My gallery will no longer load the items. I went to my sharepoint list and changed a column to include date and time instead of just the date and then deleted it and made another column with the same name. Now I am getting an error for everything that uses the date like this UpdateContext({varHasrowsforToday:Filter('CCB Voting',Date = Text(Today(),ShortDate))}) , it is in my on visible for browse screen1. I am also getting an error here now et(varlastSubDate,First(collUserVoting).Date);
ClearCollect(collPrevUserVoting,Filter('CCB Voting','Created By'.Email = varUser.Email And Date = varlastSubDate));. Is there some kind of setting date was on in my sharepoint list? The entire gallery is just blank now. This is my items in the gallery Filter(
collCCBMasterData,
If(
IsBlank(ComboBox1.Selected.Result) || ComboBox1.Selected.Result = "All",
true,
'Functional Area' in ComboBox1.SelectedItems
) && If(
IsBlank(Filter.Text),
true,
Filter.Text in 'Requirement Source'
) && If(
IsBlank(Search_.Text),
true,
Search_.Text in Name
)
). Nothing in the app actually changed and the only thing I did was delete the column and create it again with the same name. Was there some kind of setting in the column?