Hi,
I have a gallery that lookups a value in the selected drop down list.
The date displays correctly, but the the time does not and the 'AM/PM' is also incorrect.
Correct display : 17/04/2024 3:30pm
Current display: 17/04/2024 12:00AM

In the gallery, I am using the following to display the date time value.
"Date: " & Text(
DateValue(
LookUp(
'Eden Park Ticket Bookings-DEV',
Fixture = EventDropDown.SelectedText.Value,
'Fixture Date And Time'
)
),
"dd/mm/yyyy hh:mm AM/PM"
)
Datasource is a datetime field in a sharepoint list.
Kind regards