March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello,
I have a table like this below where some rows are duplicates (due to reason so I cannot delete them), I woud like a measure that permit to calculate the avereage Fare for each resource taking fare only once for project.
AAA shuold be (100+250)/2 and not (100+250+100)/3
Resource | Fare | Project |
AAA | 100 | A111 |
BBB | 200 | A111 |
CCC | 350 | B222 |
DDD | 135 | C333 |
AAA | 250 | C333 |
BBB | 350 | B222 |
CCC | 450 | C333 |
DDD | 450 | B222 |
CCC | 450 | C333 |
DDD | 450 | B222 |
DDD | 300 | D444 |
AAA | 100 | A111 |
this is the table of correct averege result:
Avarege | |
AAA | 175 |
BBB | 275 |
CCC | 400 |
DDD | 295 |
I don't know which is the best solution to solve this problem if measure or trough new table.
Could yu please help me?
Thank
GV
Solved! Go to Solution.
@GregVia , try measure like
averageX(summarize(Table,Table[Project],Table[Resource], Table[Fare]), [Fare])
or
averageX(summarize(Table,Table[Project],Table[Resource], "_1", max(Table[Fare])), [_1])
@GregVia , try measure like
averageX(summarize(Table,Table[Project],Table[Resource], Table[Fare]), [Fare])
or
averageX(summarize(Table,Table[Project],Table[Resource], "_1", max(Table[Fare])), [_1])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |