Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

nested functions ?

Status
Not open for further replies.

bastienk

Programmer
Mar 3, 2004
326
CA
Hi All

trying to capture a portion of a cell where i need to split that cells data based on a comma

tried using:

=TRIM(LEFT(Z1729,SEARCH(Z1729,",")))3

and

=TRIM(MID(Z1729,0,SEARCH(Z1729,",")))

but it doesn't work...

Any hints would be appreciated...

TIA




Bastien

Cat, the other other white meat
 
How about:
[tt]
=TRIM(LEFT(Z1729;SEARCH(",";Z1729)))
[/tt]


-----
=SUBSTITUTE("world";"war";"peace")
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top