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 moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I have built a paginated report and all good. However when I export the data to excel the start_time column formats to ### and if I remove the - it changes to 23:58.51 which is not correct as should be 12:01:09.
The cell in the report is formated as time (hh:mm:ss) Long Time.
I have tried changing the time column to something else, but does not work either.
Anyone had this issue before and know how to fix?
Solved! Go to Solution.
The issue you're encountering with `start_time` exporting as ######### in Excel and showing values like 23:58:51 is likely due to a mismatch between the underlying data type and formatting in your Paginated Report and how Excel interprets negative or improperly parsed time values.
To ensure proper export of time values from your Paginated Report to Excel:
=Format(Fields!start_time.Value, "HH:mm:ss")Or, if it's a string:
=TimeValue(Fields!start_time.Value)
SELECT CAST(start_time AS TIME) AS start_time FROM your_table
Try previewing your report and exporting it to Excel after applying the above changes. Check if the time displays correctly.
✔️ If my message helped solve your issue, please mark it as Resolved! 👍 If it was helpful, consider giving it a Kudos! |
The issue you're encountering with `start_time` exporting as ######### in Excel and showing values like 23:58:51 is likely due to a mismatch between the underlying data type and formatting in your Paginated Report and how Excel interprets negative or improperly parsed time values.
To ensure proper export of time values from your Paginated Report to Excel:
=Format(Fields!start_time.Value, "HH:mm:ss")Or, if it's a string:
=TimeValue(Fields!start_time.Value)
SELECT CAST(start_time AS TIME) AS start_time FROM your_table
Try previewing your report and exporting it to Excel after applying the above changes. Check if the time displays correctly.
✔️ If my message helped solve your issue, please mark it as Resolved! 👍 If it was helpful, consider giving it a Kudos! |
Check out the April 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 |
|---|---|
| 30 | |
| 23 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 36 | |
| 30 | |
| 23 | |
| 22 |