I am building an Application based on a excel sheet, at a certain point the sheet uses =ROUNDUP(701.25;-1) which is returned as 710... how do we do this in C#
I tried Math.Round that returns 701, If I try to use Math.Round() with -1 then i get this
Rounding digits must be between 0 and 15, inclusive.
Please help me out here.