Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a data string that contains number and I need to know if the value is between 2 string values.
For example the data are :
"0265"
"0450"
"2351"
"1250"
"0315"
And I only want datas between "0000" and "0430"
In TMAP I don't know how to do, can someone help me ?
Thanks
try this
(Integer.valueOf(row1.columnName)>=0&&Integer.valueOf(row1.columnName)<=430)?true:false
try this
(Integer.valueOf(row1.columnName)>=0&&Integer.valueOf(row1.columnName)<=430)?true:false