|
Question : Format an amount without the decimal point
|
|
I need to format an amount field from a linked table to have no decimal point ie if the amount is 53.25 I need the field to show 5325.
Also need the date to be formatted as mmddyyyy with no punctuation
Thank you
Ginney
|
|
Answer : Format an amount without the decimal point
|
|
use this
Left([amount],InStr([amount],".")-1) & Mid([amount],InStr([amount],".")+1)
|
|
|
|