This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hello All,
I have a table like this,
| Index | Product | Value |
| 1 | Bike | Green |
| 2 | Bike | Yellow |
| 3 | Bike | Green |
| 4 | Bike | Green |
| 5 | Bike | Red |
| 6 | Clothing | Red |
| 7 | Clothing | Green |
| 8 | Clothing | Red |
| 9 | Clothing | Yellow |
| 10 | Clothing | Red |
| 11 | Accessories | Green |
| 12 | Accessories | Red |
| 13 | Accessories | Green |
| 14 | Accessories | Yellow |
| 15 | Accessories | Green |
I want to create a measure which count all the Green for product "Bike".
At last I want to have a bar chart, where axis is Product and value is Divide("Number of Green"/("Number of Yellow"+"Number of Red"))
Thanks in advance.
Solved! Go to Solution.
@NithinBN
Can you check this measure:
Measure =
VAR Green =
CALCULATE(
COUNTROWS(Table1),
Table1[Value]= "Green"
)
VAR YellowRed =
CALCULATE(
COUNTROWS(Table1),
Table1[Value] = "Yellow" || Table1[Value] = "Red"
)
RETURN
DIVIDE(
Green,
YellowRed
)
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@NithinBN
Can you check this measure:
Measure =
VAR Green =
CALCULATE(
COUNTROWS(Table1),
Table1[Value]= "Green"
)
VAR YellowRed =
CALCULATE(
COUNTROWS(Table1),
Table1[Value] = "Yellow" || Table1[Value] = "Red"
)
RETURN
DIVIDE(
Green,
YellowRed
)
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@NithinBN
In a bar or column chart, keep the Product on the Axis and Measure on the Value
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 30 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 61 | |
| 50 | |
| 30 | |
| 23 | |
| 23 |