Home > Net >  Erase / Filter rows with info from the ones in blank
Erase / Filter rows with info from the ones in blank

Time:04-19

Hi everyone I have this data in a Google Sheet, basically is a dinamyc table that will have more information or could change in a future with more or less rows, in the same image at the right you will see what I need, I was thinking about use BLANK but is giving me some errors, also I tried with transposeFilter but same problem. Some help or recomendations please! (The only information not dinamyc is the blue rows)

enter image description here

CodePudding user response:

try:

=FILTER(A:D; TRIM(FLATTEN(QUERY(TRANSPOSE(A:D);;9^9)))<>"")
  • Related