Mar 22, 2001 #1 vlitim Programmer Sep 2, 2000 393 GB if I have two numbers say 1.234567 * 2.987 = 3.687651629 what happens if I only want to display the answer to two decimal places? ie 3.69 ??
if I have two numbers say 1.234567 * 2.987 = 3.687651629 what happens if I only want to display the answer to two decimal places? ie 3.69 ??
Mar 22, 2001 #2 link9 Programmer Nov 28, 2000 3,387 US dim result result = round((1.234567 * 2.987), 2) The 2 being the number of decimal places you would like to have the result rounded off to... good luck! Paul Prewett Upvote 0 Downvote
dim result result = round((1.234567 * 2.987), 2) The 2 being the number of decimal places you would like to have the result rounded off to... good luck! Paul Prewett