Using AND in Excel for large lists

GallivantingOne

New Member
Joined
May 9, 2023
Messages
12
Office Version
  1. 365
Platform
  1. Windows
DateStartEndArenaHome TeamN/S/E/WAway TeamN/S/E/WDivisionBracket
04/03/202320:3021:30MPSKodiaks*SouthKodiaks*NorthU11Div1Go Here
04/04/202317:3018:30CDBAvengersWestBumble Bees*NorthU11Div1A
04/04/202319:4520:45CMMScreaming SquirrelsNorthBumble Bees*NorthU11Div1
04/04/202319:3020:30CTMCedars U13NorthCedars U13SouthU9Div
04/04/202317:3018:30CVACondorsWestCondorsSouthU9Div

I have a spreadsheet called "All Ice" and what I need to do is link the Division cells to the correct scheduling bracket located on another sheet. The other sheet is called "Scheduling Brackets". The Division field consist of a drop down box listing U9Div, U11Div1, U11Div1A, U11Div2, U11Div3, U13Div1, U13Div2, U13Div3, U13Div4, U15Div1, U15Div2, U15Div3, U18Div1, U18Div2, U18Div3

I am using =IF(I12="U11Div1",HYPERLINK('Scheduling Brackets'!F10,"Go Here"),"") and it works. When you click on the "Go Here" in the Bracket column it takes you to the U11Div1 sheduling bracket on the next sheet. The scheduling brackets for each of the above divisions are all on the same "Scheduling Brackets" sheet but the cell reference (F10) would change to locate the correct division.

Looking at this, I thought I could use AND to link all these IF statements for each of the divisions based on the selection from the Division column. The spreadsheet shown above is only 5 lines out of about 900. That seems to be a lot of IF / AND statements to copy down is it not? I've used Excel for a number of years but never to this extent. Any thoughts?
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
You could use the MATCH function to search for the row number of a Division label in column F of sheet Scheduling Brackets
Something like this...

Excel Formula:
=HYPERLINK("#'Scheduling Brackets'!F" & MATCH(I12,'Scheduling Brackets'!F:F,0),"Go Here")
 
Upvote 0
Solution
Brilliant! Works like a charm. Thanks so much. I spent hours looking at all the different Excel commands to try and get this to work. So simple. Thanks again!
 
Upvote 0

Forum statistics

Threads
1,215,357
Messages
6,124,482
Members
449,165
Latest member
ChipDude83

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