D drj Member Licensed User Longtime User Mar 19, 2013 #1 I have two a formatting problems. 1. I want to format a number into a string without any commas. 2. I want to format a number into a string that has a percentage sign. Can you tell me how to do this? Thanks
I have two a formatting problems. 1. I want to format a number into a string without any commas. 2. I want to format a number into a string that has a percentage sign. Can you tell me how to do this? Thanks
Erel B4X founder Staff member Licensed User Longtime User Mar 20, 2013 #2 1. NumberFormat2(Number, 0, 0, 0, False) 2. NumberFormat2(Number, 0, 0, 0, False) & "%" Upvote 0