I have a SharePoint list with three columns
Column 1 = Fruit (Single line text)
Column 2 = Ripe (Single line text)
Column 3 = Destroyed (Date)
I am looking to display the count of how many rows meet a set of criteria within column 1 and 2 and where column 3 is blank using a label on my Power App screen.
Example of desired outcome:
I am looking for the row count with Fruit=Apple, Ripe=Yes, Destroyed=BLANK
This result would display 2 from the list sample below.
Fruit Ripe Destroyed
Apple Yes 7/5/20
Orange Yes 6/5/20
Pear Yes 5/2/20
Apple No 4/6/21
Apple Yes
Apple Yes
I can get one criteria to work with this formula CountRows(Filter('DATA',Fruit="Apple")) but when I try adding more criteria into the formula it fails CountRows(Filter('DATA',Fruit="Apple" && Ripe="Yes" && Destroyed=""))
I would appreciate the help. Thanks