Hello,
I have a PowerApps form connected to SharePoint list. Within this form I have a Single line of text field called "Combination".
To this Combination field I have used below expression:
Text(DateTimeValue(DataCardValue26.SelectedDate),"mmyy") & Trim(ThisItem.LocationNo & Upper( Left(ThisItem.'Customer Name',3 ) &"OP"))
This usually helps me to get - mmyy from Date field, than the location no, first 3 characters from Customer Name field and at last it adds OP.
For e.g. Date selected is 5/1/2025, Location-RTT, Customer Name (3 characters) - DDA, so the result will be as below:
0525RTTDDAOP
In App, it does shows the correct logic calculated, but in SharePoint list and the list that is extracted to Excel, few of the fields are not populating correctly.
For above instance - it is only showing OP in the "Combination" field.
Not sure, what is causing this error in Excel.