hi all,
iam new in excel, so dont have knowledge about it. I have the situation:
columns with 11 digit numbers. WE need to break it 5-4-2.
I need to remove the "0" when it is the first character of 5, then 4, then 2.
So i came up with this:
=REPLACE(B9,SEARCH("0",B9,6),1,"")
FIRST OF...