I'm using the below formula to try and get an interest rate but it is sometimes coming up a penny short
dim float as decimal = Math.ROUND((((Convert.ToDecimal(35000000.00) * Convert.ToDecimal(0.020625)) / 360) * 3), 2, MidpointRounding.AwayFromZero)
This is equaling 6015.62...if i do the math on a calculator I get 6015.625 which I would then want to round up to 6015.63...how can I achieve this?