I am very new to Powerapps and Dataverse, so far I had been doing good until i tried to build summary page,
the main deal is that I tried to do this
ClearCollect(
UserMainRecords,
Filter(AID_Tbl_RMains, Rm_Empl_IP_FK.Empl_IP_PK = "1234567")
)
to create a collection with records that meet this criteria, so that later on I could do some type of summary operation, the main problem is that i get a collection back that is filtered but without any data, and that one column I am filtering has that error displayed. what am I doing wrong