Forum Discussion
Tihannah
Resolver II
4 years agoDax 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...
- 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.
PaulDBrown
Community Champion
4 years agoYou need to wrap the text column in an aggregation, such as MAX(Table[Property]) or SELECTEDVALUE (Table[Property])
Both will return the same result.
Tihannah
Resolver II
4 years agoThat did it. Thank you!