NEED FORMULA!

E

Elle

hi .. i wanted a more generic string.... ie... cell1 could have any two
alphabet letters and any two numbers.... and i want cell 2 to have a zero and
just the two alphabet letters..... does that make sense?
 
T

Toppers

In cell2:

="0" & LEFT(cell1,2)

where cell1 = cell address e.g A1

If you need to check the value:

=IF(Cell1=CompCell,"0" &LEFT(Cell1,2),"")

Where CopCell contains the value to be compared.

HTH
 
E

Elle

OMG it works!! THANKS!!!!!!!!!!!!

Toppers said:
In cell2:

="0" & LEFT(cell1,2)

where cell1 = cell address e.g A1

If you need to check the value:

=IF(Cell1=CompCell,"0" &LEFT(Cell1,2),"")

Where CopCell contains the value to be compared.

HTH
 
Top