The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I am very new to PowerBI and I'm trying to get the following done:
I have a 7 binary column (1,NULL) for a certain group of people. and then I have a measure that adds up all of the people. What I want to do, is create a measure that gives me % of the total for those users who are "1" in the binary columns.
So for example, let's say the total of people I have is 6 and in one of the binary columns, only 4 of those are "1". I want to create a measure that calculates the 4/6. It's kind of a sumifs and then division, but I am not familiar with DAX. Any help will be highly appreciated!
Solved! Go to Solution.
Hi @rilimonv
You may create a measure like below:
Measure = COUNTROWS(FILTER(Table1,Table1[binary]=1))/COUNTROWS(Table1)
Regards,
Hi @rilimonv
You may create a measure like below:
Measure = COUNTROWS(FILTER(Table1,Table1[binary]=1))/COUNTROWS(Table1)
Regards,