March 17, 201114 yr Hi! The field contains this amont in this format: 33.078.50 and I need to convert it to 33078.50 or 33,078.50 I tried Substitute ( amount; "."; "") but this gives me 3307850 Can someone give me a hand?
March 17, 201114 yr Author Well, it is actually a number field, but it looks that the data stored in it is text. What would be the best way to convert it?
March 17, 201114 yr Assuming ALL amounts follow the same pattern, and that the periods are in the data itself (i.e. not produced by field formatting), change the field's type to Text, then try = Substitute ( Amount ; "." ; "" ) / 100
Create an account or sign in to comment