Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Having Trouble creating an appropriate measure column

Hello Everyone,

I am having trouble creating a column that can accurately represent what I am trying to present. 

2019-07-31_13-04-35.png

The above matrix is what I currently have in Power BI. I am trying to make another column here that will be a percentage column. I need it to be the percentage of "yes" out of the "total."

 

I cant just use a regular measure, because I want it to calculate for each column. On the back end, Im pullin this info from two data columns. A "Job" column that lists the job to the left, and a "Retire Eligible/5yrs" column that tells me the yes or the no.

 

This is the DAX measure/column that I was trying, but it doesnt seem to be correct:

2019-07-31_13-08-28.png

As extra information, I just made the "help column" as a column where all cells are equal to 1, since I wasnt able to sum the "job" column as it is non-numerical.

 

 

Is there a simple way that I am missing that I can get this to work?

 

Thank you!

 

 

 

1 ACCEPTED SOLUTION
v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous 

You may create measures like below.For example:

Yes = CALCULATE(COUNT(Table2[Job]),FILTER(Table2,Table2[Eligible]="Yes"))
Percent = [Yes]/CALCULATE(COUNT(Table2[Job]))

a1.png

Regards,

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous 

You may create measures like below.For example:

Yes = CALCULATE(COUNT(Table2[Job]),FILTER(Table2,Table2[Eligible]="Yes"))
Percent = [Yes]/CALCULATE(COUNT(Table2[Job]))

a1.png

Regards,

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

This seems to work! Thank you!

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors