Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi , I'm looking for a Measure in PBI that will allow me to get the Count of Injury, if Forseeble is True, from below table.
| Incident number | Forseeble | Injury | Count of Injury if Forseeble True |
| 1 | TRUE | TRUE | |
| 2 | FALSE | FALSE | |
| 3 | FALSE | FALSE | |
| 4 | FALSE | TRUE | |
| 5 | TRUE | FALSE | |
| 6 | TRUE | TRUE | |
| 7 | FALSE | TRUE | |
| 8 | FALSE | FALSE | |
| 9 | FALSE | FALSE |
Solved! Go to Solution.
Hi @ARoma
try to create a measure with this:
Hi @ARoma
try to create a measure with this:
Hi @djurecicK2
thanks for looking into this. I'm looking for the Count of Injury True, (not incidents), where Forseeble is also True.
Hi @djurecicK2
thanks for looking into this. I'm looking for the Count of Injury True, (not all incidents), where Forseeble is also True. If I undersend corectly , the measure you mentioned above is caluculationg all incidents where Forseable is True.
Hi @ARoma
You can try something like this
Count of Foreseeable= CALCULATE(COUNT(Tablename[incident number]),FILTER(tablename, tablename[ForeseeableInjury]= true()))
Use "true" if that field is text. Please adapt to your field and table names.
Please accept as solution if this answers the question- thanks!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 17 | |
| 14 | |
| 13 |