Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hello. I am having an issue when I attemp to do a data refresh from the PBI browser based tool. It refreshes fine from the desktop I am getting the following error:
Data source error: | Not a legal OleAut date.. The exception was raised by the IDataReader interface. Table: hbdg customer_order_line_item. |
I found and fixed some obvious date problems where the year obviously wrong (0217 instead of 2017, etc.), but am still getting the error on this table. I have many entries where the date shows NULL and many where the date shows 0000-00-00 and my question is does anyone know if the zeros can cause the refresh to fail? Thanks!
J
Solved! Go to Solution.
Yes, this would cause an error (see this thread).
The easiest way to fix it without doing it manually:
- Open the query editor
- Click the Add Column tab and click Cusom Column.
- Enter:
if [Date] > #date(1900, 1, 1) then [Date] else null
(if your Date column is called something else, replace [Date] with your column name
- Copy the name of the old Date Column
- Delete the old Date column
- Rename the new column as exactly what the old column was (that you copied)
Love hearing about Power BI tips, jobs and news?
I love to share about these - connect with me!
Stay up to date on
Read my blogs on
Remember to spread knowledge in the community when you can!
Did I answer your question? Mark my post as a solution! Proud to be a Super User!
Connect with me!
Stay up to date on
Read my blogs on
Yes, this would cause an error (see this thread).
The easiest way to fix it without doing it manually:
- Open the query editor
- Click the Add Column tab and click Cusom Column.
- Enter:
if [Date] > #date(1900, 1, 1) then [Date] else null
(if your Date column is called something else, replace [Date] with your column name
- Copy the name of the old Date Column
- Delete the old Date column
- Rename the new column as exactly what the old column was (that you copied)
Love hearing about Power BI tips, jobs and news?
I love to share about these - connect with me!
Stay up to date on
Read my blogs on
Remember to spread knowledge in the community when you can!
Did I answer your question? Mark my post as a solution! Proud to be a Super User!
Connect with me!
Stay up to date on
Read my blogs on
Woohoo! Thank you Steve!!!