Share via

Seeking Formula help

Anonymous
2024-09-19T20:41:36+00:00

I have a list of 3500 employees who are iOS users. I have a second list of 200 employees and I want to see which of them have iOS devices. Is there a formula or pivot I can use to easily show which of the 200 employees appear on the list of 3500 employees? (some may not be on the larger list because they are Android users).

Microsoft 365 and Office | Excel | For business | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Anonymous
    2024-09-19T21:25:11+00:00

    Let's say the first list is on Sheet 1 in A2:A3500, and the second list on Sheet 2 in A2:A200.

    In B2 on Sheet 2:

    =ISNUMBER(XMATCH(A2, 'Sheet 1'!$A$2:$A$3500))

    Fill down.

    Alternatively, enter the following formula somewhere on Sheet 2:

    =FILTER(A2:A200, ISNUMBER(XMATCH(A2:A200, 'Sheet 1'!A2:A3500)))

    Was this answer helpful?

    0 comments No comments