48 null bug fix
This commit is contained in:
+1
-1
@@ -29,7 +29,7 @@ function numFmt(num, decimalPlaces = 0){
|
||||
request.numFmt = numFmt;
|
||||
|
||||
function nFmt(num, decimalPlaces = 2){
|
||||
if (num EQ 0) return "";
|
||||
if (num EQ 0 OR NOT isNumeric(num)) return "";
|
||||
return numFmt(num, decimalPlaces);
|
||||
}
|
||||
request.nFmt = nFmt;
|
||||
|
||||
Reference in New Issue
Block a user