help writing a possibly complex formula?

AshleyT

New Member
Joined
Dec 6, 2017
Messages
1
Hello excel Gurus,

I'm looking for help with writing a formula in a current workbook.
I need a formula that will look up information in multiple tabs, and return one or multiple values into another tab.

Below is a simplified table that I have in one tab of my workbook titled "Summary Tab" I would need the name of "Display A, Display B, Display C, etc., " to show up in the corresponding month and also in the corresponding Customers row (Customer 1, 2, 3,...)

SUMMARY TAB

Q1January ShipFebruary ShipMarch Ship
Customer 1
((would need formula HERE))((would need formula HERE))((would need formula HERE))
Customer 2((would need formula HERE))((would need formula HERE))((would need formula HERE))
Customer 3((would need formula HERE))((would need formula HERE))((would need formula HERE))

<tbody>
</tbody>


DISPLAY A Tab (which I have for Display A, B, C, D, E, F, G, H, I and J all in separately labeled tabs)

CustomerShip Month
Customer 1January
Customer 2February
Customer 3January
Customer 4January

<tbody>
</tbody>

DISPLAY B Tab

CustomerShip Month
Customer 1January
Customer 2February
Customer 3January
Customer 4February

<tbody>
</tbody>



So for instance:
I have Display A
Customer 1 ship month is January
Display B
Customer 1 ship month is also January





I would need a formula that could automatically fill in, Customer 1, January Ship cell with "Display A and Display B""Display A and Display B"
To tell me that Customer 1 has two different displays shipping in the Month of January.
I would be manually entering in the ship months on each Display tab (please note for formula purposes, the ship months are volatile and I may be changing them more than once - if that matters?- )

Thank you for any help with guiding me in the right direction of how to tackle this!!!

 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Assuming Customers are listed in A2 down.
And months are listed in row 1, starting at B1 as January (not January Ship).

Try this in B2 and copy across and down:

Code:
[TABLE="width: 64"]
<tbody>[TR]
[TD="width: 64"]=IF('Display  A'!$B2="","",TEXTJOIN(" and  ",TRUE,IF(INDEX('Display A'!$B$2:$B$20,MATCH(Summary!$A2,'Display  A'!$A$2:$A$20,0))=Summary!B$1,"Display  A",""),IF(INDEX('Display B'!$B$2:$B$20,MATCH(Summary!$A2,'Display  B'!$A$2:$A$20,0))=Summary!B$1,"Display B","")))[/TD]
[/TR]
</tbody>[/TABLE]
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,459
Messages
6,124,945
Members
449,198
Latest member
MhammadishaqKhan

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