Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi everyone,
I'm trying to merge some rows of a table based on consecutive time intervals. My table looks something like this:
Start Date | End Date | Value |
01/01/2022 | 02/01/2022 | 10 |
02/01/2022 | 04/01/2022 | 10 |
04/01/2022 | 05/15/2022 | 10 |
05/15/2022 | 06/01/2022 | 20 |
06/01/2022 | 08/13/2022 | 20 |
08/13/2022 | 09/01/2022 | 20 |
09/01/2022 | 10/31/2022 | 20 |
10/31/2022 | 12/24/2022 | 10 |
12/24/2022 | 01/10/2023 | 10 |
01/10/2023 | 03/27/2023 | 10 |
I would like to merge the rows within each block of similar values in the "value" column, so that the result looks like:
Start Date | End Date | Value |
01/01/2022 | 05/15/2022 | 10 |
05/15/2022 | 10/31/2022 | 20 |
10/31/2022 | 03/27/2023 | 10 |
A simple
GROUPBY(table, [Value], "Start Date Merged", MINX(CURRENTGROUP(), [Start Date]), "End Date Merged", MAXX(CURRENTGROUP(), [End Date]))
doesn't work because the values in "Value" are not unique outside the blocks I want to merge.
Any help with this would be greatly appreciated, as I have been trying to wrap my head around this for quite some time.
Thanks!
@swandernoth , Refer if this can help , you case the diff is 0
Continuous streak: https://youtu.be/GdMcwvdwr0o
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
19 | |
14 | |
14 | |
11 | |
8 |