January 13, 200521 yr I need to make a calculation to round to the highest (not nearest) 9.99. In order words lets say a retail price is 500 and I take 10% off, but round to the nearest 9.99. This would be 500 X .9 = 450
January 13, 200521 yr I would think: 10 * Int( Round( InputNumber , 2 ) / 10 ) + 9.99 But remind me not to shop at your place.
Create an account or sign in to comment