Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
HI,
I have below Source dataset
| Source data | ||||
| Employee ID | Function | Start Date | End Date | Days |
| A001 | PM | 2024-01-01 | 2024-01-31 | 31 |
| A001 | PM | 2024-02-01 | 2024-02-15 | 15 |
| A001 | Consultant | 2024-02-16 | 2024-02-29 | 14 |
| A001 | PM | 2024-03-01 | 2024-03-31 | 31 |
| A001 | Consultant | 2024-04-01 | 2024-04-30 | 30 |
| 121 |
And i was hoping to produce the below summary
| Target summary | ||||
| Employee ID | Function | Start Date | End Date | Days |
| A001 | PM | 2024-01-01 | 2024-02-15 | 46 |
| A001 | Consultant | 2024-02-16 | 2024-02-29 | 14 |
| A001 | PM | 2024-03-01 | 2024-03-31 | 31 |
| A001 | Consultant | 2024-04-01 | 2024-04-30 | 30 |
| 121 |
when using Group by function for Employee ID and Function with min for start date and max for end date. I got the below summary which is not correct.
| Group by Emplee ID and Function. - Incorrect Summary | ||||
| Employee ID | Function | Start Date | End Date | Days |
| A001 | PM | 2024-01-01 | 2024-03-31 | 91 |
| A001 | Consultant | 2024-02-16 | 2024-04-30 | 75 |
| Incorrect | 166 |
Does any expert have any good solution? Many thanks in advance.
Solved! Go to Solution.
Try adding the final parameter for the Table.Group function. Before the end parentheses, add ", GroupKind.Local".
--Nate
Hi Nate, Many thanks for your prompt response. i works perfectly. Calvin
Try adding the final parameter for the Table.Group function. Before the end parentheses, add ", GroupKind.Local".
--Nate
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.