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 experts.
I have a table that contains data in following format
Build ver Color
12 1.0.1 blue
12 1.0.3 red
13 2.0.4 blue
13 2.0.5 orange
12 3.0.2 blue
I want to create a measure that if is ‘12’ and ‘blue’, it will filter only
12 1.0.1 blue
12 3.0.2 blue
This works for only one criteria
Measure = COUNTROWS(FILTER(UnifiedInstallers,UnifiedInstallers[Color]="blue")) but I need the Build too.
Any help is greatly appreciated
Solved! Go to Solution.
Hi @BEC_100
You can use && to concatenate multiple criteria. For example,
Measure =
COUNTROWS(FILTER(UnifiedInstallers,UnifiedInstallers[Color]="blue" && UnifiedInstallers[Build]="12"))
If the Build column is Number type, remove the double quotes around 12.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @BEC_100
You can use && to concatenate multiple criteria. For example,
Measure =
COUNTROWS(FILTER(UnifiedInstallers,UnifiedInstallers[Color]="blue" && UnifiedInstallers[Build]="12"))
If the Build column is Number type, remove the double quotes around 12.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
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 |
|---|---|
| 27 | |
| 25 | |
| 23 | |
| 19 | |
| 14 |
| User | Count |
|---|---|
| 50 | |
| 46 | |
| 19 | |
| 18 | |
| 18 |