Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a field which has certain values like so :
TYPE = { dev, prod, test}
How can I exclude only test from this field in my template?
If (TYPE <> 'test', TYPE)
Use expression like
if(match(TYPE,'dev','prod'),TYPE)
Regards,
Ivan
Thanks.. but there are more values in the field than what I have given above around 15 of them and I have to exclude just 'test' it would be easier if there was a function just to exclude the value 'test'
SUM({<TYPE-={'test'}>} Value)
If (TYPE <> 'test', TYPE)
Thank you