Drop down list + other data

Iywilson001

New Member
Joined
Jun 6, 2024
Messages
4
Office Version
  1. 365
Platform
  1. Windows
I am trying to get the ID# on the vacancy sheet to pullOver to the id# column on the onboarding sheet as a dropdown IF column N of the vacancy sheet has ACTIVE.
I also want the corresponding data on B-E of the vacancy tracker to pull over to the onboarding tracker.
 

Attachments

  • IMG_0415.png
    IMG_0415.png
    206.8 KB · Views: 12
  • IMG_0414.png
    IMG_0414.png
    254.4 KB · Views: 11

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Welcome to the MrExcel forum!

If your Onboarding sheet looks like:

Book1
ABCDEFGHIJKLMN
1OnboardingVacancy
2
3ID #LOCDIVSECTIONPOSITIONSTATUSHR POCOPENCLOSESELECTEECOMMENTSactivity
412345ohiocarportfrontendcashierSelection MadeTera Cobb1/1/20241/11/2024Ashly Jonesactive
5999999TexasWashercleaningcleanerSelection MadeAngel gobletinactive
63456123CanadaMarketingCarwashSignerSelection MadeCarol Thomasactive
7
Onboarding


Then you can use these formulas to achieve your request:

Book1
ABCDEFGHI
1OnboardingVacancyWork
212345
3LOCDIVSECTIONPOSITIONID #3456123
4ohiocarportfrontendcashier12345
5
6
7
Vacancy
Cell Formulas
RangeFormula
I2:I3I2=FILTER(Onboarding!B4:B100,Onboarding!M4:M100="active")
B4:E4B4=IF(F4<>"",INDEX(Onboarding!$B$4:$M$100,MATCH(F4,Onboarding!$B$4:$B$100,0),{2,3,4,5}),"")
Dynamic array formulas.
Cells with Data Validation
CellAllowCriteria
F4:F6List=$I$2#


Notice that you'll need a work column somewhere to filter the list of IDs that are active. I use the I2 formula to do that. This is used by the Data Validation in column F. Then the formula in B4 will look up the rest of the desired data. Let me know if this is what you're looking for.
 
Upvote 1
Solution

Forum statistics

Threads
1,221,848
Messages
6,162,403
Members
451,761
Latest member
pitchoute

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