Forum Discussion
davebourgeois87
4 years agoFrequent Visitor
How to create measure using a specific column value as the denominator
Hello, I'm still pretty new to Power BI and I'm having a ton of trouble understanding filter functions in DAX. Example: The above table is an example where I want to create a measure...
- 4 years ago
Hello,
Are you looking for something like this,
Note: Divide is the name of the sheet that I have
Please use this calculation to achieve the same
Solution 2 = SUM('Divide'[% of Total HH's]) / CALCULATE(MAX('Divide'[% of Total HH's]),ALL('Divide'),'Divide'[DEMOS]="Total Panel",'Divide'[PROD]=MAX('Divide'[PROD]))Regards,Ritesh,Mark my post as a solution if it helped you| Gentlemen & Ladies|Munde and Kudis| I like your Kudos!! !!
My You Tube Channel !! Connect on Linkedin || Power BI for Tableau Users
ribisht17
Super User
4 years agoHello,
Are you looking for something like this,
Note: Divide is the name of the sheet that I have
Please use this calculation to achieve the same
Solution 2 = SUM('Divide'[% of Total HH's]) / CALCULATE(MAX('Divide'[% of Total HH's]),ALL('Divide'),'Divide'[DEMOS]="Total Panel",'Divide'[PROD]=MAX('Divide'[PROD]))
Regards,
Ritesh,
Mark my post as a solution if it helped you| Gentlemen & Ladies|Munde and Kudis| I like your Kudos!! !!
My You Tube Channel !! Connect on Linkedin || Power BI for Tableau Users
My You Tube Channel !! Connect on Linkedin || Power BI for Tableau Users
- davebourgeois874 years agoFrequent Visitor
ribisht17 Yes, this is great, thanks so much!