Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
8 | |
6 |