Forum Discussion
line graph coloring based on
- 5 years ago
Dunner2020 , Try like
Upper Limit new = if(max(Date[date])> eomonth(today(),0), [Upper Limit], [Actutal value])
Lower Limit new = if(max(Date[date])> eomonth(today(),0), [Lower Limit], [Actutal value])
Dunner2020 , Set you upper limit
limit
Upper Limit new = if(max(Date[date])> eomonth(today(),0), [Upper Limit], blank())
lower Limit new = if(max(Date[date])> eomonth(today(),0), [lower Limit], blank())
amitchandak Anonymous , wow it works. Thanks for the reply.
Before I accept the reply as a solution, quick question is it possible to joint the upper and lower limits to the actual value line for the passed months (as shown in the picture)
I tried the following measures to generate similar thing:
It produced the following output
As you can see that the color of actual value is changed and to brown. Is there any way of doing that?
- amitchandak5 years agoSuper User
Dunner2020 , Try like
Upper Limit new = if(max(Date[date])> eomonth(today(),0), [Upper Limit], [Actutal value])
Lower Limit new = if(max(Date[date])> eomonth(today(),0), [Lower Limit], [Actutal value])
- Anonymous5 years agoNot applicable
Thanks :). Amit already my solution to your question.😊