The issue you're encountering with date format during data import from Dataverse into Customer Insights - Data (CI-D) via the Power Query connector is a common challenge when dealing with localized date formats. Here's an explanation of why this happens and a set of recommendations to resolve it.
CI-D's Expected Date Format:
M/d/yyyy h:m:s a
yyyy-MM-ddTHH:mm:ssZ
dd.MM.yyyy
Locale Mismatch:
Dataverse DateTime Format:
The safest approach is to transform the datetime column in Power Query to match CI-D’s expected ISO 8601 format. Here’s how to do it:
StartdatoMedlemsskap
powerquery Copy code
= Text.From(DateTime.ToText([StartdatoMedlemsskap], "yyyy-MM-ddTHH:mm:ss"))
This transformation ensures that CI-D will interpret the datetime correctly.
If you want to continue using the localized Norwegian format, ensure the data is interpreted properly in Power Query:
While this may work, CI-D can still encounter issues if it doesn’t understand the localized format. Using ISO 8601 (Solution 1) is generally more reliable.
If you have access to Dataverse, consider pre-transforming the date format at the source. For example:
Sometimes the issue lies in how the Power Query connector interprets and applies transformations. To debug:
#"Changed Type" = Table.TransformColumnTypes(#"Previous Step", {{"StartdatoMedlemsskap", type datetime}}, "nb-NO")
For more information on handling dates in Power Query and Dataverse, you can refer to:
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
As AI tools become more common, we’re introducing a Responsible AI Use…
We are honored to recognize Andrés Arias as our Community Spotlight honoree for…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Daniyal Khaleel 130
DAnny3211 97
Abhilash Warrier 66 Super User 2025 Season 2