March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Dear all,
i am using the below measure & which is correct, the only thing i would like to show, if values are blank, then show that "N/A"
Solved! Go to Solution.
Hello @vjnvinod
You can try the below code.
EU Current Month - 2% Actual =
VAR TotalHours =
CALCULATE (
DIVIDE (
SUM ( 'People Flash Consolidated'[Chargeable Hours - Actual] ),
SUM ( 'People Flash Consolidated'[Effective Available Hours - Actual] )
),
'People Flash Consolidated'[Period] = "MTD",
'People Flash Consolidated'[3 M Weightage] = TRUE
)
RETURN
IF( ISBLANK( TotalHours ), "N/A", TotalHours )
Hello @vjnvinod
You can try the below code.
EU Current Month - 2% Actual =
VAR TotalHours =
CALCULATE (
DIVIDE (
SUM ( 'People Flash Consolidated'[Chargeable Hours - Actual] ),
SUM ( 'People Flash Consolidated'[Effective Available Hours - Actual] )
),
'People Flash Consolidated'[Period] = "MTD",
'People Flash Consolidated'[3 M Weightage] = TRUE
)
RETURN
IF( ISBLANK( TotalHours ), "N/A", TotalHours )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
82 | |
69 | |
53 | |
44 |
User | Count |
---|---|
202 | |
106 | |
100 | |
64 | |
56 |