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
I've tried a few solutipons to similar posts and can't find one that works. I have a table with multiple records per ID, some of which have a number in them (calculated field). My other table has one record per ID. I need to pull over the maximum value from Table 1 for that ID.
Table1:
ID | Number |
INC000002007779 | |
INC000002007779 | 0.2 |
INC000002007779 | |
INC000002007779 | 46.37 |
INC000002028105 | |
INC000002028105 | 0.13 |
INC000002028105 | |
INC000002050489 | 0 |
INC000002050489 | |
INC000002050489 | 93.25 |
INC000002050489 |
Table2. I need to pull in the max number from table1 for each ID.
ID | Max Number |
INC000002007779 | 46.37 |
INC000002050489 | 93.25 |
INC000002028105 | 0.13 |
And if you want to use DAX
Table2 = SUMMERIZE( Table1, Table1[Id], "Max Number",CALCULATE(Max(Table1[Number])) )
Kristjan, I simplified my data and possibly left out some key pieces. My Table2 is an already existing table with other columns that I left out of my example. My Number column in Table1 is a calculated measure, so it won't pull into a new summarized table.
To get the max value from table 1 to table 2 into a calculated column you can
MaxValueFromTable1 = VAR T2id = Table2[Id]
RETURN MAXX( FILTER( Table1, Table1[Id] = T2id ), Table1[Number] )
Have you tried using Power Query for this? If you load your table 1 below and use the Group by it should give you the output you are looking for:
mark, my number column is calculated, so unfortunately it doesn't show up in power query. I guess an alternative would be to calculate the column in power query, but I'm not sure of the syntax. Would you happen to know how to get the same results in PQ?
In this formula, "Audit" is Table1 from my previous example, Incident is my ID column and PriorityNum and AuditDate are other columns not included in my simplified example.
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 |
---|---|
108 | |
77 | |
75 | |
43 | |
37 |
User | Count |
---|---|
156 | |
109 | |
64 | |
60 | |
55 |