I am having a numeric field. This field I am showing in the report. There is a space in the field before the first number. I need to remove that space and display in the report.
I was trying to use a formula for that using Ltrim(). The issue is that while Ltrim() I get an error " A string is required here". So I use the totext function before the Ltrim
Ltrim(totext(table.field)). When I display in the report I get in the format 1,2345.00 . I need the field to be displayed like 12345. Please help
I was trying to use a formula for that using Ltrim(). The issue is that while Ltrim() I get an error " A string is required here". So I use the totext function before the Ltrim
Ltrim(totext(table.field)). When I display in the report I get in the format 1,2345.00 . I need the field to be displayed like 12345. Please help