Keep/Bring Back Trailing Zeros

ktschultz92

New Member
Joined
Oct 24, 2017
Messages
8
Hello All!

I have a report that I dump from a vendor online. The only option I get is to download it as a CSV file. Sometimes, some of the order information has trailing zeros. The CSV file automatically gets rid of them, but I need the trailing zeros back. This column of order information is referenced in another sheet of a master worksheet. The order information can be in one of two formats:

98765.4321
98.7654.321

It has been my experience that the latter of the two does not drop off zeros, as the second period converts that item to text. However, if I have 98765.4320, it is automatically shown in the CSV download as 98765.432. This happens often enough, and with new orders, too.

I have tried the ROUND formula... that doesn't seem to have worked.

Thank you for the help!
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
If the problem numbers always have 4 values after the "." then you can use this formula (assuming your values are in column A):
=TEXT(IF(LEN(A2)-2 = LEN(SUBSTITUTE(A2,".","")),A2,IF(LEN(MID(A2,SEARCH(".",A2)+1,100))<4,CONCATENATE(A2,INDEX({"0","00","000","0000"},4-LEN(MID(A2,SEARCH(".",A2)+1,100)))),A2)),"#.0000")

This will add zeros if multiple are missing from the end of the problem pattern.

Hope this helps.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,945
Messages
6,127,861
Members
449,411
Latest member
adunn_23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top