Got a headache trying to figure this one.

dsims

New Member
Joined
Jul 27, 2023
Messages
21
Office Version
  1. 365
Platform
  1. Windows
Ok so i did some data grabbing and I got one page that's full of data. I'm trying to pull data to one sheet based off two criteria. So if you use vlookup i can pull data based off one cell. In this case for example: (a1) apples (b2) red ..now based off my data grabbing there is a lot of apples and many different red but only row has apple then red on the same row ..by using these 2 as reference to pull the number of red apples...sry if this is confusing.
 
Is that the actual formula you used, or did you modify it?
If you modified it, please post what you used.

If that is formula you are using, are there any merged cells in any of these ranges you are working in?
If not, can you tell me the row numbers the data exists in on the "Splits" sheet?
 
Upvote 0

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Is that the actual formula you used, or did you modify it?
If you modified it, please post what you used.

If that is formula you are using, are there any merged cells in any of these ranges you are working in?
If not, can you tell me the row numbers the data exists in on the "Splits" sheet?
I didn't modified.. copied from the thread. Splits is grabbed data so no merged cells.
 
Upvote 0
Try this:
Excel Formula:
=FILTER(Splits!D1:D2488,(Splits!A1:A2488=A2)*(Splits!B1:B2488=C2),"")
 
Upvote 0
Try this:
Excel Formula:
=FILTER(Splits!D1:D2488,(Splits!A1:A2488=A2)*(Splits!B1:B2488=C2),"")
Still getting the NA..
It's like it needs a formula to look up two "what". First what is nationals second what is R(right hand pitcher) where on splits page then return the batting avg on splits page to the LHPRHP page.
i originally think a index match formula but i couldn't figure out a way for it to work.
I appreciate all your help!
 
Upvote 0
Which cell are you putting this formula in and on what sheet?
Maybe I was confused by your description and we have the sheet backwards.

Whatever sheet you are placing this formula on, the sheet references in the formula should be the OTHER sheet.
So, if you are placing this formula in cell E2 on the "Splits" sheet, then we need to change the sheet references in our formula to look at the other sheet, i.e.
Excel Formula:
=FILTER(LHPRHP!D1:D2488,(LHPRHP!A1:A2488=A2)*(LHPRHP!B1:B2488=C2),"")
 
Upvote 0
Which cell are you putting this formula in and on what sheet?
Maybe I was confused by your description and we have the sheet backwards.

Whatever sheet you are placing this formula on, the sheet references in the formula should be the OTHER sheet.
So, if you are placing this formula in cell E2 on the "Splits" sheet, then we need to change the sheet references in our formula to look at the other sheet, i.e.
Excel Formula:
=FILTER(LHPRHP!D1:D2488,(LHPRHP!A1:A2488=A2)*(LHPRHP!B1:B2488=C2),"")
LHPRHP is the page I need the data returned to. Pulling from the Splits page. I have been putting it on the LHPRHP page in cell E2.
 
Upvote 0
LHPRHP is the page I need the data returned to. Pulling from the Splits page. I have been putting it on the LHPRHP page in cell E2.
OK, then the formula should be correct, with "Splits".

Are you SURE that there is a match for the values in cells A2 and C2 on your Splits sheet?
Remember, the values must match EXACTLY. Something as simple as an extra space will cause them not to match.

Is the example your posted in post 3 accurate (where row 2 on your LHPRHP sheet matches up to row 2415 on your Splits sheets)?
If so, enter this two formulas in any blank cells on your LHPRHP sheet and tell me what they return:
Excel Formula:
=A2=Splits!A2415
and
Excel Formula:
=C2=Splits!B2415

If they do NOT both return TRUE, then they do not actually match.
The one(s) that return FALSE are saying that those values are NOT the same.
 
Upvote 0
OK, then the formula should be correct, with "Splits".

Are you SURE that there is a match for the values in cells A2 and C2 on your Splits sheet?
Remember, the values must match EXACTLY. Something as simple as an extra space will cause them not to match.

Is the example your posted in post 3 accurate (where row 2 on your LHPRHP sheet matches up to row 2415 on your Splits sheets)?
If so, enter this two formulas in any blank cells on your LHPRHP sheet and tell me what they return:
Excel Formula:
=A2=Splits!A2415
and
Excel Formula:
=C2=Splits!B2415

If they do NOT both return TRUE, then they do not actually match.
The one(s) that return FALSE are saying that those values are NOT the same.
This would work but on the LHPRHP page is a schedule and changes based off who is playing for the day. Trying to automate as much as I can.
 

Attachments

  • orca-image-609124369.jpeg
    orca-image-609124369.jpeg
    58.9 KB · Views: 11
  • orca-image--527333934.jpeg
    orca-image--527333934.jpeg
    71.8 KB · Views: 11
Upvote 0

Forum statistics

Threads
1,223,293
Messages
6,171,265
Members
452,391
Latest member
BHG

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