FreakyGirl
Member
hello
i have 4 columns of names i want to combine into 1 list including duplicates.
the current formula i have creates a unique list from those 4 columns as new names are added in but it slows down my sheet & i dont need this new list to change on the fly.
im not sure how to adjust my current formula to fit my requirements.
i have 4 columns of names i want to combine into 1 list including duplicates.
the current formula i have creates a unique list from those 4 columns as new names are added in but it slows down my sheet & i dont need this new list to change on the fly.
im not sure how to adjust my current formula to fit my requirements.
Code:
=IFERROR(IFERROR(IFERROR(IFERROR(INDEX(A$3:A$503, MATCH(0, COUNTIF($F$2:F2, A$3:A$503), 0)), INDEX(B$3:B$503, MATCH(0, COUNTIF($F$2:F2, B$3:B$503), 0))), INDEX(C$3:C$503, MATCH(0, COUNTIF($F$2:F2, C$3:C$503), 0))), INDEX(D$3:D$503, MATCH(0, COUNTIF($F$2:F2, D$3:D$503), 0))), "")CODE]
thanks,
FreakyGirl