I am having an issue where my code works correctly in Android phones and incorrectly in iPhone.
Here is my code:
*****************************************
Set(DateVar,DateValue(Left(AvlDatesListBox.Selected.DateNDay,Find("-",AvlDatesListBox.Selected.DateNDay))));
--A sample value for the DateNDay value is: 09/30/2019-Mon
*******************************************
This code works fine in Android phones and returns 9/30/2019 for DateVar value. But it does not work in iPhone and returns a blank value for DateVar
Any thoughts on what could be going wrong?