jsl script individually working fine, but add-in implementation is not working
I have a data table where I want to replace certain values with "."
Below is the script example dt = Current Data Table();
for each row (
if (:age == 12, age= . );
);
but same is not working when I have this code as add-in, data table looks like thisvinay 35
atul 55
prerna 12
adi 21
Thanks,Sibh