Volume show in if condition less than "2000000" then Show low in write cell then column show of volumeindicatoe as high for 2225,300 why theses problem happen its not get 4 and 3 digit value

@sohil_bagwan

Can you show what condition you used please

Cheers

If currentrow volume .tostring <“20000000”

@sohil_bagwan

This is the issue when you want to compare greater than and less than you hvae touse numbers…not strings…

If(IsNumeric(Currentrow("Volume").ToString),Cdbl(Currentrow("Volumn").ToString),0) > 2000000

Please try like this

Cheers

1 Like