Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
Hello
I want to create two Queries in the same workbook where one query links to a Sharepoint with US locale (date/region format) and the other to a Sharepoint with EU locale (date/region format).
The problem is that I need to specify the right locate/regional settings in the Query Options for it to work and not display Error in the Date columns.
However, this option seems to apply to both/all queries so when one query works the other doesn't.
I tried transforming the data to text, I tried changing the 'Using locale' option in the column and I tried DateTime.ToText in a new column but it does not work.
Any idea?
Hi @Anonymous ,
See:
Table.TransformColumnTypes(table as table, typeTransformations as list, optional culture as nullable text) as table
You can use the specified culture in the optional parameter culture (for example, "en-US").
In this issue, if the default type of EU date is text, you can try like this:
= Table.TransformColumnTypes(#"Changed Type", {{"Column3", type date}}, "en-GB")
Refer:
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@v-yingjl thanks I will try that although to be honest I saw several posts of this and the conclusion seems to be that it's a bug of the Api 15 (it works with Api 14).
You can switch your datetime columns to datetimezone type and use DateTimeZone.SwitchZone to match them up.
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 10 | |
| 9 | |
| 6 | |
| 5 | |
| 3 |