Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
HI Everyone,
I am stuck with one issue , I want to replace blank value with "-" and for that i am using below formula
__M Cost K$ =
var __MCostK = DIVIDE(CALCULATE(sum('Drivers'[Allocation]), 'Drivers'[Measurement] = "PH"), 1000)
RETURN
IF(NOT(ISBLANK(__MCostK )),__MCostK ,"-")
Facing this issue
Kindly help me to resolve this issue
Solved! Go to Solution.
Hi,
you can just simply change the formating of the new measure as below:
1-create new measure:
#,0.00;(#,0.00);"-"
Hi,
you can just simply change the formating of the new measure as below:
1-create new measure:
#,0.00;(#,0.00);"-"
Hi @nehamaru1985 -Can you modify the formulae as below:
__M Cost K$ =
VAR __MCostK = DIVIDE(CALCULATE(SUM('Drivers'[Allocation]), 'Drivers'[Measurement] = "PH"), 1000)
RETURN
IF(
NOT(ISBLANK(__MCostK)),
FORMAT(__MCostK, "0.00"), -- Formats the number as a string
"-"
)
Let me know if this works for you!
Proud to be a Super User! | |
Still facing same issue , Kidnly help
__MnS K$ =
var _MnSK = DIVIDE(CALCULATE(sum('Fact'[Allocation]), 'Fact'[Measurement] = "PH"), 1000)
RETURN
IF(NOT(ISBLANK(_MnSK)),FORMAT(_MnSK,"0.000"),"-")
User | Count |
---|---|
88 | |
74 | |
69 | |
59 | |
56 |
User | Count |
---|---|
40 | |
38 | |
34 | |
32 | |
28 |