If I have an Excel Array {2023;3;16}
how can I apply that to a function like DATE
?
In python I'd splat using *
: DATE(*TEXTSPLIT(A1,"."))
In Excel, do I have to manually unpack it with TAKE
or INDEX
?
For example: =LET(a, {2023;3;16}, DATE(INDEX(a,1), INDEX(a,2), INDEX(a,3))