The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Solved! Go to Solution.
Hi @Anonymous ,
Please try the following DAX formula and check if they can solve the problem:
Total =
VAR _selectedDates = VALUES('Commitment Rundown'[Date])
RETURN
CALCULATE(
DISTINCTCOUNT('Commitment Rundown'[LTP]),
FILTER(
'Commitment Rundown',
'Commitment Rundown'[Baseline Finish WE] IN _selectedDates &&
'Commitment Rundown'[RFSU Forecast WE] IN _selectedDates
)
)
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Please try the following DAX formula and check if they can solve the problem:
Total =
VAR _selectedDates = VALUES('Commitment Rundown'[Date])
RETURN
CALCULATE(
DISTINCTCOUNT('Commitment Rundown'[LTP]),
FILTER(
'Commitment Rundown',
'Commitment Rundown'[Baseline Finish WE] IN _selectedDates &&
'Commitment Rundown'[RFSU Forecast WE] IN _selectedDates
)
)
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous
Thank you very much, it works! YAY!!!
User | Count |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
21 | |
12 | |
10 | |
7 |