VLookup Multiple Values to Rows

TrinaT

New Member
Joined
Mar 23, 2022
Messages
14
Office Version
  1. 365
Platform
  1. MacOS
Hey all,

I'm fairly certain a Vlookup won't work as I have multiple rows of the same data. I have a data export that I want to filter out for comms for some sales staff we have. I need to pull certain details, and i'm hoping that I can do this with formulas, rather than having to manually copy and paste, as there is a lot of data and I need to do it on a weekly basis.

I've done a snapshot of the raw data in rows 1-13, and the data outcome that I want to filter through in row 17. The values in columns B, C, E, F and H is what I need to pull from the raw data.

Any idea on which formula I need to use?

#VALUE!
Cell Formulas
RangeFormula
D2D2=CONCATENATE(B2," ",C2)
D17D17=IFS(C17="DL pitched",1,C17="SL pitched",0.5,C17="did not pitch",0)
G17G17=F17-E17
 

Attachments

  • Screen Shot 2023-01-24 at 10.31.38 am.png
    Screen Shot 2023-01-24 at 10.31.38 am.png
    72.6 KB · Views: 12

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
The data snap is not viewable. Can you use xl2bb to load the sample?
 
Upvote 0
The data snap is not viewable. Can you use xl2bb to load the sample?
I've done that, it keeps coming up as #value...

#VALUE!
Cell Formulas
RangeFormula
D2D2=CONCATENATE(B2," ",C2)
D17D17=IFS(C17="DL pitched",1,C17="SL pitched",0.5,C17="did not pitch",0)
G17G17=F17-E17
 
Upvote 0
#VALUE!
Cell Formulas
RangeFormula
E2:E13E2=CONCATENATE(C2," ",D2)
B16:B20B16=FILTER(E2:E13,A16=A2:A13)
C16:C20C16=VLOOKUP(B16,E2:L13,2)
D16:D20D16=IFS(C16="DL pitched",1,C16="SL pitched",0.5,C16="did not pitch",0)
E16:E20E16=VLOOKUP(B16,E2:L13,4)
F16:F20F16=VLOOKUP(B16,E2:L13,5)
G16:G20G16=F16-E16
H16:H20H16=VLOOKUP(B16,E2:L13,8)
Dynamic array formulas.
 
Upvote 0
@TrinaT, you can use this link in the message boards to test the xl2bb tool:
 
Upvote 0
I've done that, it keeps coming up as #value...
What is the exact name of the workbook that you tried to show with XL2BB in post #1?
In the code behind your post it is showing as Appointments w:e 22 Jan.xlsx which is not a valid workbook name (at least in Windows - don't know about Mac) - hence the XL2BB problem.
If your workbook name does contain that colon, try making a copy and name it without the colon then try XL2BB again.
 
Upvote 0

Forum statistics

Threads
1,214,634
Messages
6,120,659
Members
448,975
Latest member
sweeberry

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