SOLVED

Skip blanks and list

Copper Contributor

Hi there

 

I want to try and make my work a bit easier by making a list of drawings automatic populate sheets by marking them "x".

 

6.png

Drawings nr. in column H.

 

I would like a list as shown in column W for the 4.2 in column M. 

I tried if and xlookup, sort and other formulas but didn't succeed. Is it possible?

 

Regards Kasper

3 Replies
best response confirmed by KasperHH (Copper Contributor)
Solution

@KasperHH 

=FILTER(H8:H14,M8:M14="x")

You can try FILTER function.

skip blanks and list.JPG 

@OliverScheurich 

Works perfect. Thanks.

@KasperHH 

This may not be what you require, but it is possible to unpivot the entire array with a single dynamic array formula.

= LET(
    a?, mark="x",
    r,  IF(a?, rev,NA()),
    d,  IF(a?, dato, NA()),
    HSTACK(TOCOL(r,3,1), TOCOL(d,3,1))
  )

image.png

1 best response

Accepted Solutions
best response confirmed by KasperHH (Copper Contributor)
Solution

@KasperHH 

=FILTER(H8:H14,M8:M14="x")

You can try FILTER function.

skip blanks and list.JPG 

View solution in original post