Hi There
I have a flow that converts dates (and other info) from a power apps form into a pdf file.
Now I have the problem that the date/time patterns in the convert time zone connector only give english outputs.
ex. Monday, June 15, 2009
How to I change the language to make my pdf file more professional?
I tried with the translate connector but it didn't really work....
Thanks for your help.
You can use the below formula in PowerApps, to convert it to the required format and then export it to pdf
ClearCollect(daysOfWeek ,Calendar.WeekdaysLong());
"Date: "& Text(Now(),"dd" ) & ", " &First(LastN(daysOfWeek,Weekday(Now()))).Value & ", "& Text(Now(),"yyyy " )
Hi @divya-akula
Thank you very much for the solution.
How do I make it display in "Monday, dd.mm.yyyy"?
Thanks
@Dan47 glad that it helped
Use the below formula
First(LastN(daysOfWeek,Weekday(Now()))).Value &", "& Text(Now(),"dd.mm.yyyy" )
Please mark it as an answer if it helps
Hi @divya-akula
In which connector do you insert this?
When I insert in in convert time it gives me this as an output:
ir0A(La0AN(21a210O0Week,Week21a21(Now()))).Value
&, & TexA(Now(),dd.mm.yyyy )
@Dan47 do you have any typos
please use it as a variable value and is there any reason that you are using a connector?