Reputation: 131
What should a function that combines selected values into one using an array function look like?
I would like the function to combine Unique Nr
if Id
and data
are the same.
https://docs.google.com/spreadsheets/d/1x1yR2oc2VxUFuijEq-bhLKGgHscnIzDVS0cguIslajk/edit?usp=sharing
Upvotes: 1
Views: 50
Reputation: 1
try:
=ARRAYFORMULA(REGEXREPLACE(TRIM(SPLIT(FLATTEN(
QUERY(QUERY({A2:A&","\ B2:B&" "&C2:C&"♦"};
"select max(Col1)
where Col1 <> ','
group by Col1
pivot Col2");; 9^9)); "♦")); ",$"; ))
Upvotes: 2