Hi@Magoforrest,
Do you want to read the Date in a Text format?
Could you please tell me that how you save the Date Picker selected date to the Excel sheet?
I think the key is how you save the date to the Excel.
I have a test on my side, please take a try as below.
Add a Button and set the OnSelect property as below:
Patch(Table1,Defaults(Table1),{Title:TextInput1.Text,Date:Text(DatePicker1.SelectedDate,"[$-en-US]dd/mm/yyyy")})
Notice that you should format your selected date into a Text string when you save date to Excel sheet.
Then in another app, please set the Text of the Label as below:
LookUp(Table1,Title="1",Date)// Title is a primary key in my table, please replace it with yours.
Please check if the above could help, if not, please show me how you save the selected date.
Regards,
Qi