Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
13 | |
10 | |
8 | |
7 | |
5 |
User | Count |
---|---|
24 | |
16 | |
15 | |
10 | |
7 |