Forum Discussion
Pritu650
Jun 15, 2022Copper Contributor
How to find multiple co-relations
Hi I have a data set here , which looks similar to this Order Id apple Banana Orange Kiwi Total 1 2 2 2 3 2 1 3 4 ...
HansVogelaar
Jun 15, 2022MVP
Another way - see the attached workbook.
PeterBartholomew1
Jun 15, 2022Silver Contributor
Same solution again but this time using MAKEARRAY:
= MAKEARRAY(4,4,
LAMBDA(r,c,
IF(r<>c,
COUNTIFS(
INDEX(qty,,r), ">0",
INDEX(qty,,c), ">0"
),
"-"
)
)
)