I do not know why I can wrap my head around this and maybe I am overthinking. I have Table A that has a person's social security number. I only want to display those person's whose SSN is in Master Table B. Is this done with a ForAll? Or ClearCollect(SSNMatch,Filter(TableA,SSN=TableB.SSN) )?
Thanks for the advice.
Solved! Go to Solution.
Hi @iskguy ,
This should do it
ForAll(
TableA As aCol,
Collect(
colMyCol,
LookUp(
TableB,
SSN = aCol.SSN
)
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Hi @iskguy ,
This should do it
ForAll(
TableA As aCol,
Collect(
colMyCol,
LookUp(
TableB,
SSN = aCol.SSN
)
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Hello @WarrenBelz ! Funny that you post this solution as I just found another similar post where you offered the solution - a similar solution - and it works! Thanks for your insight.
Brad
User | Count |
---|---|
122 | |
87 | |
86 | |
75 | |
67 |
User | Count |
---|---|
214 | |
180 | |
137 | |
96 | |
83 |