Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi All,
I am new to power BI and am trying to create card visualization to show percentage for a column. Someone suggested that I would need to create a measure first which then I would pull into card. However, my column is a text one.
For example – the problem I am trying to solve for: the column has two values, male and females….so it sums up both, calculates % and then I display only the females in the card. Any ideas on what would work best?
thanks!
Solved! Go to Solution.
Create a measure
Measure = DIVIDE(COUNTROWS(FILTER(Table, Table[Column1] = "female")), COUNTROWS(Table))
Format the measure as a percentage. Put it on a card.
You can't compare a string to a boolean.
Table[Column1] <> ISBLANK(Table[Column1])
If you do an explicit comparison with blank(), you need to understand that 0 and empty string will also be blank.
That's ok if you understand your data.
Best practice is to use ISBLANK, I think you can write
Create a measure
Measure = DIVIDE(COUNTROWS(FILTER(Table, Table[Column1] = "female")), COUNTROWS(Table))
Format the measure as a percentage. Put it on a card.
Thank you, this helps a lot. I am trying to remove the blanks also. However , I am getting an error with this edit:
Measure = DIVIDE(COUNTROWS(FILTER(Table, Table[Column1] = "female")), COUNTROWS(FILTER(Table, Table[Column1] <> ISBLANK(Table[Column1])))
Any ideas why?
thanks
You can't compare a string to a boolean.
Table[Column1] <> ISBLANK(Table[Column1])
If you do an explicit comparison with blank(), you need to understand that 0 and empty string will also be blank.
That's ok if you understand your data.
Best practice is to use ISBLANK, I think you can write
thank you for the solution and explanation!
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 18 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 53 | |
| 47 | |
| 40 | |
| 38 |