I am working on an ACH report and the bank account number can be up to 17 digits and the field needs to be 17 characters. Below is my code but it is rounding at the hundreds? How do I stop that? I tried Cstr and ToText.
Right({@Spaces20} + CStr(12345678912345678,0,"",""),17)
//outputs "12345678912345700"
Right({@Spaces20} + CStr(12345678912,0,"",""),17)//Works fine. Anything past 14 Digits gets rounded.