Hi all!
I have a problem:
I just want to display the datetime value from my mssql table (see image 1+2 attached).
1st Question: Is it possible to display the ORIGINAL datetime value from the sql (without any type of conversation)??
Other question:
I used the formula to get the correct date for germany:
Text( DateAdd( ThisItem.datumSORTIERUNG; TimeZoneOffset(); Minutes ) ; "[$-de-DE]dd.mm.yyyy hh:mm" )
But as you can see the 3rd image attached:
If you compare the values from the table to the values from the powerapps gallery:
- 1st value is WRONG
- all other values are CORRECT.
I really dont understand it.
Can you help me?
thanks,
jup
Solved! Go to Solution.
I'll start with your second question...
You need to give the TimeZoneOffset the date that you want the offset from, otherwise it will give an offset of the current timezone.
Text(
DateAdd(ThisItem.datumSORTIERUNG; TimeZoneOffset(ThisItem.datumSORTIERUNG); Minutes ); "[$-de-DE]dd.mm.yyyy hh:mm" )
As for your first question, are you talking about getting the date/time in that same format? The date/time is stored in your data as a datetime value, so it has no format. That is all governed by your local/regional settings.
I'll start with your second question...
You need to give the TimeZoneOffset the date that you want the offset from, otherwise it will give an offset of the current timezone.
Text(
DateAdd(ThisItem.datumSORTIERUNG; TimeZoneOffset(ThisItem.datumSORTIERUNG); Minutes ); "[$-de-DE]dd.mm.yyyy hh:mm" )
As for your first question, are you talking about getting the date/time in that same format? The date/time is stored in your data as a datetime value, so it has no format. That is all governed by your local/regional settings.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
196 | |
45 | |
45 | |
44 | |
36 |
User | Count |
---|---|
280 | |
81 | |
81 | |
78 | |
69 |