
Can you give an example of what the end goal would look like?
Do you mean <10 and >10?
that might look like
ifelse(aging<=${parameterday},concat("<",toString(${parameterday})),concat(">",toString(${parameterday})))
1 Like
it works perfectly…
thank you very very much Mr. Max
What if i need to the value show like <10 Days and >10 Days ?
You would add days to the concat.
ifelse(aging<=${parameterday},concat("<",toString(${parameterday})," Days"),concat(">",toString(${parameterday})," Days"))
1 Like
You have wrong enclosed parathesis.
Please use this
ifelse(aging<=${parameterday},concat("<",toString(${parameterday})," Days"),concat(">",toString(${parameterday})," Days"))
2 Likes
Wow… thanks Max
its works
2 Likes