Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have two CM
DateShiftKey | SortingNum |
20240101DS | 1 |
20240101NS | 2 |
20240102DS | 3 |
20240102NS | 4 |
20240103DS | 5 |
20240103NS | 6 |
20240104DS | 7 |
20240104NS | 8 |
20240105DS | 9 |
20240105NS | 10 |
Solved! Go to Solution.
Hi, @Anonymous
Thank you very much for your reply. You should put this metric and DateShiftKey column in table visual. See if you get the expected results. The metric needs to rely on an external context such as the DateShiftKey column to work.
Best Regards,
hackcrr
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
Perhaps you could try the following dax expression:
SortingNum1 =
VAR DSKValue = [DSKfromlastcyle]
RETURN
CALCULATE(
MAX(DimCrewSchedule[SortingNum]),
FILTER(ALLSELECTED(DimCrewSchedule),
DimCrewSchedule[DateShiftKey] = DSKValue
)
)
The results are as follows:
Best Regards,
hackcrr
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
Thank you very much for your reply. You should put this metric and DateShiftKey column in table visual. See if you get the expected results. The metric needs to rely on an external context such as the DateShiftKey column to work.
Best Regards,
hackcrr
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , Make some changes in second CM
SortingNum =
VAR SelectedDateShiftKey = [DSKfromlastcyle]
RETURN
CALCULATE(
MAX(DimCrewSchedule[SortingNum]),
DimCrewSchedule[DateShiftKey] = SelectedDateShiftKey
)
Proud to be a Super User! |
|
@bhanu_gautam
Thanks for helping, I tried the DAX you provided, but it still gives me blank
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
7 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |