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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
I am trying to count rows of a related table , but only if the related table has more than 1 record. Here is my formula,
Solved! Go to Solution.
Hey @lcasey ,
you can just return BLANK if the number is 1 or smaller. Try the following calculated column:
Launched Accounts =
VAR vRowsRelated =
CALCULATE(
COUNTROWS(
RELATEDTABLE( Cases )
)
)
RETURN
IF(
vRowsRelated > 1,
vRowsRelated,
BLANK()
)
Hey @lcasey ,
you can just return BLANK if the number is 1 or smaller. Try the following calculated column:
Launched Accounts =
VAR vRowsRelated =
CALCULATE(
COUNTROWS(
RELATEDTABLE( Cases )
)
)
RETURN
IF(
vRowsRelated > 1,
vRowsRelated,
BLANK()
)
Thank You!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 62 | |
| 54 | |
| 40 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 94 | |
| 84 | |
| 33 | |
| 32 | |
| 25 |