HI Everyone,
I have a question about how can i filter datad passed from Power BI using Power Apps.
I have send 4 columns datas to power apps, these 4 columns datas are an mensure in powerBI and its contains 0 or 1 depends the record of every line.
How can i create a filtration that only show datas when the record line contains these 4 columns and the value of these 4 columns are 1.
Original Data the power apps receive by power BI:
| User | Check1 | Check2 | Check3 | Check4 |
| AA | 1 | 0 | 0 | 1 |
| BB | 1 | 1 | 0 | 0 |
| CC | 1 | 1 | 1 | 1 |
Data should show after filter in power apps:
| User | Check1 | Check2 | Check3 | Check4 |
| CC | 1 | 1 | 1 | 1 |
Best regard