Forum Discussion

Tihannah's avatar
Tihannah
Icon for Resolver II rankResolver II
4 years ago
Solved

Dax based on slicer selection

Trying to create a dax based on the slicer selection of properties.   I had to create a measure to find the variance between two tables. I will call it Net Sales Var.   So then I have a Net Sales...
  • PaulDBrown's avatar
    4 years ago

    You need to wrap the text column in an aggregation, such as MAX(Table[Property]) or SELECTEDVALUE (Table[Property])

    Both will return the same result.