Excel Magic Trick 1120: Is Item in All Three Lists?

preview_player
Показать описание


See how to create a Logical Formula that will check whether an item in in all three lists using 2 MATCH functions and the ISNUMBER function.
Рекомендации по теме
Комментарии
Автор

Excel Magic Trick 1120: Is Item in All Three Lists? 

excelisfun
Автор

Simple, yet effective solution. Thanks!

pmsocho
Автор

short and simple, yet totally effective!!! awesome

elphau
Автор

Mike, Love your Ctrl-Shift-Enter book.  My array formula:
- returns 1 if in all lists.
Keep up the great work!!!!

MichaelVB
Автор

Thanks so much for this video Mike. Watching your videos has really opened up a new world for me....I'm doing a campus internship right now and for two days last week I'd been solving this problem by using Ctrl+F for each cell! D: 

elodieliu
Автор

very nice! thanks, Mike ~ you posted this the same time I posted my video! ... give or take 10 minutes ;) ~

LearnAccessByCrystal
Автор

Hi Mike
A very simple solution:
=COUNTIF($A$2:$C$8, E2)=2
If the ranges are not adjacent or on different sheets:
=(COUNTIF($A$2:$A$8, E2)*COUNTIF($C$2:$C$7, E2))=1

XLarium
Автор

Logical and simple ;)) Thanks
A little more difficult
=ISLOGICAL(IF(MATCH(E2, $A$2:$A$8, 0), MATCH(E2, $C$2:$C$7, 0)<0, ""))

Regards

BillSzysz