Forum Discussion

SteveG_91's avatar
SteveG_91
Helper I
3 years ago
Solved

Force 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...
  • KNP's avatar
    KNP
    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.