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
In the report the division names are appearing but some are showing with blank data even though in the measures the blank function is used as ZERO hard coded in the argument. Please advise
Solved! Go to Solution.
You can try the following methods and see what works for you.
1st Method:
VAR __measure = [Your Measure]
RETURN
IF( ISBLANK(__measure), 0, __measure)
2nd Method:
VAR __measure = [Your Measure]
RETURN
IF( ISBLANK(__measure), __measure + 0, __measure)
You can try the following methods and see what works for you.
1st Method:
VAR __measure = [Your Measure]
RETURN
IF( ISBLANK(__measure), 0, __measure)
2nd Method:
VAR __measure = [Your Measure]
RETURN
IF( ISBLANK(__measure), __measure + 0, __measure)
User | Count |
---|---|
64 | |
59 | |
47 | |
32 | |
31 |
User | Count |
---|---|
84 | |
73 | |
52 | |
50 | |
44 |