Hello team,
I have built mobile app for food delivery vendor. I have been facing issue in patching a date column into SP.
in my SP list i have a date column with type text. The reason being storing date column as text is to avoid any delegation.
In my Power Apps i am using date picker to select the date. in the date picker format property i have chosen the format as "dd/mm/yyyy"
I have no issues in patching if i use desktop or laptop. the date column in my SharePoint list properly getting patching.
But at the same time, if i use the app in mobile, when i patch , the date column is getting patched as September 1, 2024. Due to this when i use the app in mobile, filters not working.
what is the solution to this ? anybody have idea ?
My code on patch button onselect :
ForAll(varMenuItems As _DynamicItems,
Patch(MyMealPlan_Dynamic, {mealtype:_DynamicItems.mealtype,Title: _DynamicItems.mealname,mealdate:Text(Left(dp_menu.SelectedDate,10),"dd/mm/yyyy"),vegtype:LookUp(varMenuItems,mealname=_DynamicItems.mealname,Title)}));