Forum Discussion
SteveG_91
Helper I
3 years agoForce Legend Not To Affect DAX measure
I have a table named “Created Apps” that contains applications that have been created. Within that table is a column named “Action”. One of the possible values for that column is “R”. On the “R” r...
- 3 years ago
I don't have enough info about your model, relationships and name of the date field you're using, but you likely need to change the measure to something like this...
D = CALCULATE ( [CA], ALLSELECTED ( YourDateColumnName ) )If that doesn't work, I'll need some additional detail to figure it out.
KNP
Super User
3 years agoI don't have enough info about your model, relationships and name of the date field you're using, but you likely need to change the measure to something like this...
D =
CALCULATE (
[CA],
ALLSELECTED ( YourDateColumnName )
)
If that doesn't work, I'll need some additional detail to figure it out.
SteveG_91
Helper I
3 years agoThat worked, thank you!