I have a field that is dollars and cents, but with no decimal. Is there an easy way to insert a decimal or can anyone suggest any formatting adjustments. I tried to get creative and concatenate everything to the left of the last two positions + "." + the last two positions and it almost worked. There was one record that failed and I'm glad it did or I might not have realized it wasn't working. An example is one of the records says 5467377, which is actually 54673.77. My concatenation attempt failed on capturing the left side of the amount:
Code:
Left([sumofbank_amount],(InStr([sumofbank_amount],(Right([sumofbank_amount],2)))-1))