Is there a way to actually round a number, any number to N digits after the decimal?Like, the number 8 and N = 3 then it should be like 8.000Or 6.9 and N = 3, it should be 6.900Sorry if it should have been obvious, I'm a beginner.
i used the:round(num,N)function but for whole numbers and numbers that have less than N decimal digits, it didn't do anything. Can anyone help me?