Hi!
How can I remove the decimal from amount but still keep the cent? For example, 2222.22, I want it to be 222222.
I found Replace([Field1], ',', ''), it works if my number is 2,222.22 which remove the comma. but if my amount doesn't have a comma, it error out.
I even tried ToNumber(Replace(Replace([Field1], " .", ""), ",", "")), but this remove the cent, which I still need the cent.
Thank you for your help!