Fazer um IF com duas validações

Pessoal, boa tarde!

Estou tentando fazer um if com duas condições e infelizmente está dando erro e não sei o porque. Estou fazendo isso no expression:

if(
roundhalfup($[“ANALISE_DIFF_PERC_UNICO”],5) > 0.00000
&&
roundhalfup($[“ANALISE_DIFF_PERC_UNICO”],5) <= 0.09999,
“Casas Decimais”,
“Validar”
)

Hello,

I made few changes to the code and the below code worked fine for me :

if(
roundhalfup($["ANALISE_DIFF_PERC_UNICO"],5) > 0.00000
and
roundhalfup($["ANALISE_DIFF_PERC_UNICO"],5) <= 0.09999,
'Decimal Places',
'Validate'
)

Best,
Keerthan

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.