Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I am trying to calculate a measure based on the selected value of a slicer. I have two tables 'STD Hours - SAP' and 'Worked Hours' with a relationship on line detail between the two. I want the measure to take the value of the selected 'Line Detail' and calculate a measure on the filtered value. For instance, if user selects "WD Cell 4 (TO021119/120)", then sum all of the hours earned for that line detail (from 'STD Hours - SAP') and divide out the worked hours (from 'Worked Hours') for that line detail (see below):
I can get the measure to work with the following DAX:
Solved! Go to Solution.
Hi @BIGDADE5000 ,
You can update the formula of measure [DLE] as below:
DLE =
VAR SelectedLineDetail = SELECTEDVALUE('Worked Hours'[Line Detail])
RETURN
IFERROR(
SUM('STD Hours - SAP'[HMOD Earned]) /
CALCULATE(SUM('Worked Hours'[Hours]), 'Worked Hours'[Line Detail] = SelectedLineDetail),
"N/A"
)
Remember, this method assumes that your slicer is single-select. If multiple selections are allowed in your slicer, you might need to adjust your approach accordingly as below:
DLE =
VAR SelectedLineDetails =
ALLSELECTED ( 'Worked Hours'[Line Detail] )
RETURN
IFERROR (
SUM ( 'STD Hours - SAP'[HMOD Earned] )
/ CALCULATE (
SUM ( 'Worked Hours'[Hours] ),
'Worked Hours'[Line Detail] IN SelectedLineDetails
),
"N/A"
)
Best Regards
Thank you so much, Rena! It made total sense once I saw your recommendation.
Hi @BIGDADE5000 ,
You can update the formula of measure [DLE] as below:
DLE =
VAR SelectedLineDetail = SELECTEDVALUE('Worked Hours'[Line Detail])
RETURN
IFERROR(
SUM('STD Hours - SAP'[HMOD Earned]) /
CALCULATE(SUM('Worked Hours'[Hours]), 'Worked Hours'[Line Detail] = SelectedLineDetail),
"N/A"
)
Remember, this method assumes that your slicer is single-select. If multiple selections are allowed in your slicer, you might need to adjust your approach accordingly as below:
DLE =
VAR SelectedLineDetails =
ALLSELECTED ( 'Worked Hours'[Line Detail] )
RETURN
IFERROR (
SUM ( 'STD Hours - SAP'[HMOD Earned] )
/ CALCULATE (
SUM ( 'Worked Hours'[Hours] ),
'Worked Hours'[Line Detail] IN SelectedLineDetails
),
"N/A"
)
Best Regards
How would you propose to show all the values in a multi-row card? The DAX, you provided, works great but I am trying to expand it now. I want to show the 'DLE' for all lines on a multi-row card.
Should I open another topic? Thank you for your help!
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 |
---|---|
21 | |
14 | |
11 | |
8 | |
5 |
User | Count |
---|---|
24 | |
22 | |
20 | |
15 | |
10 |