Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I understand that Power Query uses my computer's regional settings for the default date. How can I get it to use the short date (MM/DD/YYYY) instead of the long date? I am mostly referring to the report view after I close and load.
Thank you!
One quick way to convert all date columns into a model to short date is to use this C# script using Tabular Editor (v2 for free, v3 is paid). You can then use TE for lots of other great stuff too.
foreach(var column in Model.Tables.SelectMany(t => t.Columns))
{
if(column.DataType.ToString() == "DateTime")
{
column.FormatString = "Short Date";
column.RemoveAnnotation("Format");
}
}
Pat
@FH_MEL Not sure that is possible. You can use Metadata Mechanic to mass set your date formats though.
GitHub - gdeckler/MicrosoftHatesGregsQuickMeasures: Microsoft Hates Greg
Check out the July 2025 Power BI update to learn about new features.