Forum Discussion
YavuzDuran
May 02, 2023Copper Contributor
Are two cells the same if the order is different in excel
If the order does not matter, what formula should I use to prove these are all same
JosWoolley
May 02, 2023Iron Contributor
=COLUMNS(
UNIQUE(
BYCOL(A1:D1,LAMBDA(ζ,TEXTJOIN("|",,SORT(TEXTSPLIT(ζ,,";"))))
),
1)
)=1
Regards