Copy link to clipboard
Copied
Hi I've got format script:
event.value = util.printf("%,2.0f",event.value).toString().replace(/\./gim," ");
Please help, how to change it, because now if there is no data, result is '0', should be empty.
Thanks !
wieslaw
After this line add:
if (event.value == "0") event.value = "";
Copy link to clipboard
Copied
After this line add:
if (event.value == "0") event.value = "";
Copy link to clipboard
Copied
Thank YOU very much, it works 🙂