I have this formula (simplified because it is long):
=FILTER(RANGE1,(C3=TRUE), RANGE1<>"")
In place of range can I refer to the cell , AC2, that would contain the range name?That is because I have 2 ranges, Range1 & Range 2. If user selects Range1 then execute for that range, or if user selects Range2, execute filter to that range.
Something like this...
=IFS(AC2="Range1", *filter function*, AC2="Range2", *filter function*)
This is because I want the filtering range to change with the users' selection.I tried just referring to that cell K2, but got an error.Then I put an IF condition instead of range in the filter criteria, but none worked.