Hi,
I have a powerapp backed by a sql on-premise database. The db has a view Q_ProductionStatus_VR with a dateTime column called EndDate
I use the following to get the most recent date:
Set(selectedDate,Max('[dbo].[Q_ProductionStatus_VR]',EndDate ))
The selectedDatevariable created is of type number, I would have expected it to be a Date;
Is this an error? Is there some way to convert the number to a date?