How to get clean integer values?

Hello,

for any reason, i can`t get an empty value to cero… because for any reason it is a string…
so i multibly the “empty string” by 1 and i get null and i can replace it by 0…

is there a better way ? when i get integers i expect to work with integers… it seems to be it is not always the way…

KR

Andreas

hello, it is still possible to create a function as well


function:

def transform_int(a)
{
return a==""?0:Math.Floor(a);
};

cordially
christian.stan

2 Likes

@christian.stan ,

i tried this also and it works… hmmm

2023-05-23_16h41_27

1 Like

to create trouble in the mind :wink:


cordially
christian.stan

1 Like

I would use the simple if statement here as it is the most robust and least susceptible to data type errors (ie, if you get ‘one’ as a value instead of 1). The design script is as posted by @Draxl_Andreas: x==“”?0:x;

3 Likes