As per ExcelJET:
https://exceljet.net/functions/mround-function#:~:text=The%20MROUND%20function%20rounds%20a,half%20the%20value%20of%20significance.
I am looking to round a value to the multiple of 5.
Does anyone know? Thanks!
Hey @caltang, you'd just use the Round() function. Round(x, mult) where 'mult' is the multiple, in your case 5:
Round([Number], 5)
Silly me! I somehow forgot that existed ahha! Thanks @DataNath !