Hello, new here but have lurked a bit and found good info (thank you!) but can't find this solution yet.
I have data that comes from Excel that is in "general" format but I can change the money rows to number or accounting or currency first if that would help, so far it hasn't. What I need is for amounts to have two decimals, retain the negatives when they are negatives and total 15 characters. So I have values like this:
175.5
-100
0
32.75
50
And I want them to come out like this:
000000000175.50
00000000-100.00 (but it might need to be -00000000100.00 I won't know until the result file is loaded which way it needs to go)
000000000000.00
000000000032.75
000000000050.00
The result file must be text in notepad, not csv or Excel, and retain that specific format because it has to be loaded into a payroll system from a text file from notepad.
I've tried a variety of pad left and format combinations but I can't seem to get it to pad the zeros and keep the decimals and negatives and get it to stay that way when going to a notepad text output.