// Example: toPrecision(4) when the number has 7 digits (3 before, 4 after) // It will round to the tenths place num = 500.2349; result = num.toPrecision(4); // result will equal 500.2// Example: toPrecision(4) when the number has 8 digits (4 before, 4 after) // It will round to the ones place num = 5000.2349; result = num.toPrecision(4); // result will equal 5000
↧
How can we use toPrecision() method in SSRS?
↧