Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have 2 tables: -
Now I need to calculate 2 things i.e 2 calculated measures: -
So basically in the excel world I would need for each suburb =SUM(COUNTIFS($M$2:$M$390000,"true",$N$2:$N$390000,"Suburb X"),COUNTIFS($M$2:$M$390000,"false",$N$2:$N$390000,"Suburb X")) and then SUMIF for the above to aggregate totals by state.
So how do I do this in POWER BI using DAX
Solved! Go to Solution.
Hi,
first thing you need to make sure is that the two tables have a relationship (i.e. connect them via the Geography attribute). Then you need a few simple measures:
+ count client in distress (CALCULATE(COUNTROWS(EpiTable), Status = "true") or something like that)
+ count all clients (DISTINCTCOUNT(Client)
+ state population (SUM(State!Population)
Then you set up the measures for your percentages, making sure to use the ALL function in the denominator to get the total counts.
You don't need to do anything to get counts per state - that will be taken care of automatically by Power BI via cross-filtering and context-setting; for example, if you set up a bar chart to show the numbers per state the above measures will be evaluated in the context of the state belonging to each bar.
Hope this helps! 🙂
Christian
Hi,
first thing you need to make sure is that the two tables have a relationship (i.e. connect them via the Geography attribute). Then you need a few simple measures:
+ count client in distress (CALCULATE(COUNTROWS(EpiTable), Status = "true") or something like that)
+ count all clients (DISTINCTCOUNT(Client)
+ state population (SUM(State!Population)
Then you set up the measures for your percentages, making sure to use the ALL function in the denominator to get the total counts.
You don't need to do anything to get counts per state - that will be taken care of automatically by Power BI via cross-filtering and context-setting; for example, if you set up a bar chart to show the numbers per state the above measures will be evaluated in the context of the state belonging to each bar.
Hope this helps! 🙂
Christian
Many thanks @chbraunChristian for the advice.
On another measure I am doing something similar and have 2 options
Asthma Prev = CALCULATE(COUNT(Epi[asthma active]),Epi[asthma active] = "true")/COUNT(Epi[ID])
or
Asthma Prev = CALCULATE(COUNTROWS(Epi),Epi[asthma active] = "true")/COUNT(Epi[ID])
Both give the same answer. Could you tell me the differences in the 2 apparoaches and which one to go for.
Also Asthma Prev = CALCULATE(COUNTA(Epi[asthma active]),Epi[asthma active] = "true")/COUNT(Epi[ID]) is alsoe giving me the same answr. ALL 3 OPTIONS SEEMS TO WORK. Butnot sure which one is BEST