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 sho...
- Oct 27, 2022
PeterBartholomew1
Oct 27, 2022Silver 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))
)