The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi, need help with a DAX Query I want to retune which week(s) the max hours occurs not all weeks for each course?
Solved! Go to Solution.
or you plot the course column with two measures like:
_WeekMax = MAX(data[WeekMax])
_WeekNo =
MAXX(
TOPN(
1,
data,
data[WeekMax]
),
data[WeekNo]
)
it worked like:
Thanks, it is common thet the max week occurs more then once, is there a war to expemf to reuurm them all
i.e. Course A may have a max hours in week 3,7 and week 10.
Hi, Thanks, nearly right
It is returning the hours for the max week, but it is returning the last (Max) value for Week No. and not the weeks this values occur on i,e, the first course has 30 weeks of data, so it is returning 30 and not weeks 11, 12, 14 14 & 15
hi @Garbo62
not sure if i fully get you, supposing you have a data table like:
try to create a calculated table like:
Table =
ADDCOLUMNS(
ADDCOLUMNS(
VALUES(data[course]),
"WeekMax",
CALCULATE(MAX(data[WeekMax]))
),
"WeekNo",
CALCULATE(MAX(data[WeekNo]))
)
it worked like:
or you plot the course column with two measures like:
_WeekMax = MAX(data[WeekMax])
_WeekNo =
MAXX(
TOPN(
1,
data,
data[WeekMax]
),
data[WeekNo]
)
it worked like:
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
18 | |
18 | |
17 | |
15 | |
13 |
User | Count |
---|---|
36 | |
35 | |
19 | |
18 | |
18 |