My powerapp broke last week. One of my collections won't collect data from a sharepoint list anymore.
Here is the formula:
ClearCollect(colWellnessLogAvailableOptions, WellnessLogAvailableOptions);
ClearCollect(colWellnessLog, Filter(WellnessLog, Name1 = varUser.FullName));
The first collection works, the second, "ClearCollect(colWellnessLog, Filter(WellnessLog, Name1 = varUser.FullName));" will not.
When I hold my cursor over "colWellnessLog" the error reads:
"The function 'ClearCollect' has some invalid arguments. Invalid argument type."
Oddly enough, when I change the collection "colWellnessLog" to something slightly different, (e.g. "colWellnessLogs") it will work.
Powerapps doesn't seem to like that name. Could it be because it's duplicating a section of another collection's name?
This function has worked for well over a year now and just recently stopped working.
Any ideas?

