Forum Discussion
KasperHH
Oct 27, 2022Copper Contributor
Skip blanks and list
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".
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
- PeterBartholomew1Silver Contributor
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)) ) - OliverScheurichGold Contributor
- KasperHHCopper Contributor
Works perfect. Thanks.