Hi all,
I'm struggling to make some formula work, unsure if i am not applying the formula correctly.
for context:
I have a table that goes from C1 to GX. (x is dynamic since rows will be added over time)
First row is the headers of the table, so data goes from C2 until GX.
Then i have a column H, where will be Yes/No.
I want to be able to extract filtered rows into another tab from that table, ONLY when there is a Yes in the column H. But without adding column H if that was not clear.
When i do
I am able to obtain the table as expected.
*I added COUNTA so the GX will be basically taking each new row and avoid having to enter a number each time...
The thing now is when i try to modify the above formula, with the filter condition.
If i do just:
I would be getting empty results. Unsure why.
And the idea that I want to try, is combine INDIRECT and FILTER, but when I do, I get VALUE error.
Not sure if i should FILTER(INDIRECT ... or INDIRECT(FILTER ... but get VALUE error both ways.
Hope it makes sense and someone can help me understand the formula better.
Thanks in advance!
I'm struggling to make some formula work, unsure if i am not applying the formula correctly.
for context:
I have a table that goes from C1 to GX. (x is dynamic since rows will be added over time)
First row is the headers of the table, so data goes from C2 until GX.
Then i have a column H, where will be Yes/No.
I want to be able to extract filtered rows into another tab from that table, ONLY when there is a Yes in the column H. But without adding column H if that was not clear.
When i do
Excel Formula:
=INDIRECT("Sheet1!C2:G"&COUNTA(Sheet1!C:C))
*I added COUNTA so the GX will be basically taking each new row and avoid having to enter a number each time...
The thing now is when i try to modify the above formula, with the filter condition.
If i do just:
Excel Formula:
=FILTER(Sheet1!C7:G10,H7:H10="Yes","")
And the idea that I want to try, is combine INDIRECT and FILTER, but when I do, I get VALUE error.
Not sure if i should FILTER(INDIRECT ... or INDIRECT(FILTER ... but get VALUE error both ways.
Excel Formula:
=FILTER(INDIRECT("Sheet1!C2:G"&COUNTA(Sheet1!C:C)),Sheet1!H:H="Yes")
Excel Formula:
=INDIRECT(FILTER("Sheet1!C2:G"&COUNTA(Sheet1!C:C),Sheet1!H:H="Yes"))
Hope it makes sense and someone can help me understand the formula better.
Thanks in advance!