I'm importing dollar amounts from an ASCII file and need them to format a certain way.
Example:
This is how the numbers look after I import them into my spreadsheet.
1.23
12.23
123.45
1234.56
This is how I need the same numbers to look after I apply the proper formatting:
000000123
000001234
000012345
000123456
The two requirements are: [red][1][/red] All numbers must have the same number of digits (inserting the right amount of zeros), even though the initial imported values might vary; [red][2][/red] I have to keep the values to the right of the decimal point, but remove the decimal point itself.
Any help that can be offered is greatly appreciated.
Example:
This is how the numbers look after I import them into my spreadsheet.
1.23
12.23
123.45
1234.56
This is how I need the same numbers to look after I apply the proper formatting:
000000123
000001234
000012345
000123456
The two requirements are: [red][1][/red] All numbers must have the same number of digits (inserting the right amount of zeros), even though the initial imported values might vary; [red][2][/red] I have to keep the values to the right of the decimal point, but remove the decimal point itself.
Any help that can be offered is greatly appreciated.