May 25, 2001 #1 Lotruth Programmer May 2, 2001 133 US How do you display money using the dollarformat function without having the cents (.00) added?
May 25, 2001 #2 tlhawkins Programmer Dec 28, 2000 797 US I would try using: #Numberformat(mynum,"$_______."# If the number actually has a decimal and cents you can use #int(mynum)# to drop everything after the decimal. have fun Upvote 0 Downvote
I would try using: #Numberformat(mynum,"$_______."# If the number actually has a decimal and cents you can use #int(mynum)# to drop everything after the decimal. have fun