This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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 May 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 |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 23 | |
| 18 |