Forum Discussion
Color coding graph based on age.
I was able to get a new table created to group children by ages.
and was told to create the following measure
Hi inglexjc amitchandak ,
Just replace the comma with && 'Legal Files'[Age] >= __AgeBandMin &&.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
NathanielNathaniel_C don't worry about it I went a different direction since it wasn't working.
11 Replies
- amitchandakSuper User
inglexjc , try like
Count Age =
VAR __AgeBandMin = SELECTEDVALUE('Query1'[Min] )
VAR __AgeBandMax = SELECTEDVALUE('Query1'[Max])
return
CALCULATE(
COUNTX(Filter('Legal Files',
'Legal Files'[Age] >= __AgeBandMin,
'Legal Files'[Age] <= __AgeBandMax
),'Legal Files'[Age]) )- inglexjcPost Patron
- Nathaniel_CCommunity Champion
Hi inglexjc amitchandak ,
Just replace the comma with && 'Legal Files'[Age] >= __AgeBandMin &&.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel