Forum Discussion
rbowen
2 years agoHelper III
Create Measure With Filter Conditions
I'm trying to create a measure that uses some conditions for the final result that will included in a table visual. I have 3 previously created measures, one for Sales, one for Costs and one for Reba...
- 2 years ago
Thank you for the reply Nono. I gave up on this approach and went a different direction by restructuring some of the data and altering some of the relationships.
Anonymous
2 years agoNot applicable
Hi rbowen
Kaviraj11 Thank you very much for your prompt reply. Allow me to share some content here.
Measure =
IF(
SELECTEDVALUE('Table'[Category]) = "A", // YourTableName[Category] = "A",
[TotalSales] - [TotalCosts] + [TotalRebates],
[TotalSales] - [TotalCosts]
)
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
rbowen
2 years agoHelper III
Thank you for the reply Nono. I gave up on this approach and went a different direction by restructuring some of the data and altering some of the relationships.