
Announcements
I have a Power BI report that I've integrated with Power Apps. The report has a column of date time. I need the Power Apps to show this date/time exactly like it is in the PBI report, but every function I've tried shows the wrong format.
UTC produces the following:
Text(DateValue( ThisItem.'BEGIN TIME'), DateTimeFormat.UTC)
LongDateTime makes all my times 12:00:00 AM
Text(DateValue( ThisItem.'BEGIN TIME'), DateTimeFormat.LongDateTime)
Using ShortDateTime also makes all times 12:00
Text(DateValue( ThisItem.'BEGIN TIME'), DateTimeFormat.ShortDateTime)
If I just keep it as ThisItem.'Begin Time', then the date format is still 12:00 AM
ThisItem.'BEGIN TIME'