E
Elle
If one cell states "ra32", how do I get another cell to state "0ra"?
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