Here i want to use count of daybetween on the legend but how can i do it, what should i use in ifelse calculation


image

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


Nope this won’t help.

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