Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi all,
I have the a table called "Plan" which looks like this:
ResourceName | Date | Task | Total Capacity Per Month |
A | 1 January, 2022 | A | 147 |
A | 1 February, 2022 | B | 147 |
B | 1 March, 2022 | D | 161 |
B | 1 March, 2022 | A | 161 |
B | 1 March, 2022 | C | 161 |
C | 1 April, 2022 | A | 140 |
C | 1 April, 2022 | B | 140 |
C | 1 May, 2022 | C | 154 |
D | 1 May, 2022 | D | 154 |
E | 1 May, 2022 | B | 154 |
I am trying to add a column to it for unique capacity per month for each resource. So I am looking to have something like this:
ResourceName | Date | Task | Total Capacity Per Month | Unique Capacity Per Month |
A | 1 January, 2022 | A | 147 | 147 |
A | 1 February, 2022 | B | 147 | 147 |
B | 1 March, 2022 | D | 161 | 161 |
B | 1 March, 2022 | A | 161 | 0 |
B | 1 March, 2022 | C | 161 | 0 |
C | 1 April, 2022 | A | 140 | 140 |
C | 1 April, 2022 | B | 140 | 0 |
C | 1 May, 2022 | C | 154 | 154 |
D | 1 May, 2022 | D | 154 | 154 |
E | 1 May, 2022 | B | 154 | 154 |
Thank you in advance for your help,
Solved! Go to Solution.
@Meiko , You need an index column for that. Add that in power query
new column in dax
if( [Index] = minx(filter(Table, [resourcename] = earlier([resourcename]) && [Date] = earlier([date]) ), [Index] ) ,[Total capacity per monnth], 0)
Thanks for this, but I am having a problem getting the index. I tried:
@Meiko , You need an index column for that. Add that in power query
new column in dax
if( [Index] = minx(filter(Table, [resourcename] = earlier([resourcename]) && [Date] = earlier([date]) ), [Index] ) ,[Total capacity per monnth], 0)
Thanks for this, but I am having a problem getting the index. I tried:
Instead of using DAX I just added the index in query and it worked.
Thanks
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
90 | |
87 | |
84 | |
66 | |
49 |
User | Count |
---|---|
131 | |
110 | |
96 | |
70 | |
67 |