I have this QR code scanner application in PowerApps and what I wanted to do was when the user scans the QR (onScan), the datevalue now will be assigned to a variable. But what happens in the code below, is that the date differs per device. Sometimes it shows two different date format:

This is my code below when assigning when the user scans a QR code but it say its an incompatible type error:
Set(
dateNowIn,
//DateValue(Now())
Text( DateValue( Now() ), "mm/dd/yyyy" )
);