I have a simple Excel Spreadsheet as my source data, and a DataTable control on a Canvas app. I am having trouble filtering with two conditions. I see many posts on this and they look quite easy to follow, but I am not seeing what I am doing wrong here, because when I apply two conditions, the table shows "we didn't find any data to show at this time".
My excel spreadsheet is as below (with just two rows in the sheet):
When I filter with one condition I get two rows returned which is correct.
Filter(Table1, Column1 = "a")
If I change this (still with one condition) to filter on Column 2 I get one row which is also correct.
Filter(Table1, Column2 = "a")
However if I combine these two conditions together on the filter it does not return any rows at all.
Filter(Table1, Column1 = "a", Column2 = "a")
Can you please help me understand what I am doing wrong here?


