Hi.
I'm building a powerapp that relies on SharePoint lists related to each other in a cascade manner:
The "first":
The "second":
The "third":
"Posto de Trabalho" in tbl_postos is the source to the lookup "Posto de trabalho" in tbl_inspecoes, and "ID" in tbl_inspecoes is the source to the lookup "Inspeção" in tbl_riscos_identificados.
Following
these instructions (
@RezaDorrani, thank you for your videos!), I've got stuck where I must create a collection. My problem is that, differently from the instructions, my data source is another lookup column instead of text. The code
<Code>ClearCollect(colGridData, Filter(Tasks, 'Project Lookup'.Value = RecordsGallery1.selected.Title))</Code>
Returns incompatibility of data types, what makes sense, becase (I think) the ".Value" in my 'Project Lookup' is another lookup.
So, is it possible to create this collection in a way that it takes the value from a lookup which data comes from another lookup?
Thank you in advance!