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! Don't miss your chance! Learn more
I have a measure that I am using an if isblank function and for the true side of it I am setting the value to a hard coded amount such as 80 as shown below. But when I put this into a table visual the total at the bottom is pulling in the same 80 figure. I can't seem to determine the best way to get the actual sum of the Measure. I feel like I should have another measure that peforms the equivilent to a SUMX but could be wrong. Any insight would be greatly appreciated.
Solved! Go to Solution.
Hi,
I am not sure how your datamodel looks like, but please try the below if it suits your requirement.
Clinic Director Hours =
VAR _Hours = 80
VAR _result =
SUMX (
VALUES ( tablename[columnname that is used in the visual] ),
IF ( ISBLANK ( [Payroll Hours] ), _Hours, [Payroll Hours] )
)
RETURN
_result
Hi,
I am not sure how your datamodel looks like, but please try the below if it suits your requirement.
Clinic Director Hours =
VAR _Hours = 80
VAR _result =
SUMX (
VALUES ( tablename[columnname that is used in the visual] ),
IF ( ISBLANK ( [Payroll Hours] ), _Hours, [Payroll Hours] )
)
RETURN
_result
Think you resolved the issue, much appreciate the guidance.
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 |
|---|---|
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 14 | |
| 9 | |
| 7 | |
| 7 | |
| 6 |