Need an excel formula to look at values on one Worksheet and only pull back the differences.

Wecks

New Member
Joined
Aug 11, 2018
Messages
5
I have 3 x Worksheets.

The master list is a Sheet called WINDOWS7MACHINES

This contains a complete list of Windows 7 machines and only has one column called WIN7MACHINES which lists all the names of the machines running windows 7


WINDOWS10READY

This is a list of machines i have picked out as being ready for a Windows 10 upgrade. It contains One column and this is called WIN10READYMACHINES and it contains a list of the machine names that are ready to be upgraded to Windows 10.

NOTWINDOWS10READY

Now I want to pull machine names from WINDOWS7MACHINES but I dont want to include machine names that are in WINDOWS10READY worksheet under the column WIN10READYMACHINES

Does anyone have any ideas?

Cheers

Andy
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
In A2 of NOTWINDOWS10READY control+shift+enter, not just enter, and copy down:

=IFERROR(INDEX(Win7Machines,SMALL(IF(ISNA(MATCH(Win7Machines,Windows10Ready,0)),ROW(Win7Machines)-ROW(INDEX(Win7Machines,1,1))+1),ROWS($A$2:A2))),"")

where Win7Machines and Windows10Ready are named ranges.
 
Upvote 0

Forum statistics

Threads
1,223,909
Messages
6,175,313
Members
452,634
Latest member
cpostell

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top