This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
Hello everyone,
I've been working with power BI around 4 months, and now I'm starting to get more complicated tasks in my work. I have a large dataset with a date column and several values columns (see annex):
Each "DXX" column represents a time of date in which a value was measured (for example, column D00 means the value was measured at 00:00 from the day of DATE colum (DATE_VAL); column D01 means the value was measured at 00:30... and so each half an hour).
My question is: it is possible to arrange the existing DXX values by time in the date column? I guess some rows with the hour corresponding to each value must be added to the date column.
What I have:
| DATE | D00 | D01 | D02 | D03 |
| 01/01/2020 | 32 | 25 | 24 | 21 |
What I would like:
| DATE | VALUE |
| 01/01/2020 00:30 | 32 |
| 01/01/2020 01:00 | 25 |
| 01/01/2020 01:30 | 24 |
| 01/01/2020 02:00 | 21 |
Thank you so much in advance for your answers,
Cheers!!
Solved! Go to Solution.
Hi,
Please try to unpivot All 'Dxx' columns:
Then split the [Attribute] column:
After Apply&Close, please try to create a calculated column:
Column = FORMAT('Table'[Date]+TIME(0,'Table'[Attribute.2]*30,0),"YYYY-MM-DD HH:MM:SS")The result shows:
Here is my test pbix file:
Hope this helps.
Best Regards,
Giotto Zhi
Hi,
Please try to unpivot All 'Dxx' columns:
Then split the [Attribute] column:
After Apply&Close, please try to create a calculated column:
Column = FORMAT('Table'[Date]+TIME(0,'Table'[Attribute.2]*30,0),"YYYY-MM-DD HH:MM:SS")The result shows:
Here is my test pbix file:
Hope this helps.
Best Regards,
Giotto Zhi
I'ts perfect! Thank you so much for your help!!
Hi,
Using the power query editor you could unpivot the DXX columns in order to achieve something like what you're after
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 24 | |
| 24 | |
| 21 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 56 | |
| 53 | |
| 49 | |
| 26 | |
| 26 |