
Announcements
Hi,
I need to format a date to a specific language.
Right now I have the following expression:
formatDateTime(outputs('Compose_3'), 'd MMMM yyyy')
DateTime date1 = new DateTime(2008, 8, 29, 19, 27, 15);
Console.WriteLine(date1.ToString("d, M",
CultureInfo.InvariantCulture));
// Displays 29, 8
Console.WriteLine(date1.ToString("d MMMM",
CultureInfo.CreateSpecificCulture("en-US")));
// Displays 29 August
Console.WriteLine(date1.ToString("d MMMM",
CultureInfo.CreateSpecificCulture("es-MX")));
// Displays 29 agosto
Is there a way to implement this in Flow?
Thank you
Hi @nhafala,
Flow does not currently support formatting time into a specific country or region.
I am afraid that your requirements cannot be achieved currently.
If you want to the feature that you mentioned to be supported in Microsoft Flow, please submit an idea to Flow Ideas Forum:
https://powerusers.microsoft.com/t5/Flow-Ideas/idb-p/FlowIdeas
In addition, you could consider using Convert time zone action. Although it can't configure the time display style of a specific country, you could select the time zone and it provide a lot of time display format.
Best Regards,
Barry