I always like to come to you chaps for this kind of help as the other forums never quite have what I need!
Basically, some information is pasted in to a spreadsheet. This information comes in the form of a number and decimal, as below:
12.34
Now I need to strip this down and place the seperate parts in to columns. This I've done with:
=LEFT(I13,SEARCH(".",I13)-1)
=TRIM(RIGHT(I14,LEN(I14)-FIND(".",I14)))
This does the job but for a couple of use cases as below:
12.34 12 34
2.34 2 34
5.02 5 02
1.20 1 2
My major issue at the moment is the last one. This information comes in as 1.2, but I solved that easily enough with adding decimal places to the column.
But the output must be 20, for processing sake, not 2.
The main option I've found online is to convert it to a text string first, but that outputs 02 as it works from the right.
Does anyone have some ideas which would cover all cases? (Bearing in mind I dont want to go with VB for Excel!)
Much appreciated!
Basically, some information is pasted in to a spreadsheet. This information comes in the form of a number and decimal, as below:
12.34
Now I need to strip this down and place the seperate parts in to columns. This I've done with:
=LEFT(I13,SEARCH(".",I13)-1)
=TRIM(RIGHT(I14,LEN(I14)-FIND(".",I14)))
This does the job but for a couple of use cases as below:
12.34 12 34
2.34 2 34
5.02 5 02
1.20 1 2
My major issue at the moment is the last one. This information comes in as 1.2, but I solved that easily enough with adding decimal places to the column.
But the output must be 20, for processing sake, not 2.
The main option I've found online is to convert it to a text string first, but that outputs 02 as it works from the right.
Does anyone have some ideas which would cover all cases? (Bearing in mind I dont want to go with VB for Excel!)
Much appreciated!