Read text in one cell and fill another

Double_D

New Member
Joined
Jul 24, 2017
Messages
1
Hi,

So I am trying to create a Fantasy Football spread sheet. I want to create a formula that will read the team name in the cell next to it and then spit out the bye week that team has assigned. For example if E4="ARI" then I want F4=8 for their bye week being week 8.


While it is easy to make it for one word like ARI and spit out 8. Is there a way to output the week number with the corresponding team initials.

The team initials and bye weeks are:
ATL, DEN, NO, WAS = 5
BUF, CIN, DAL, SEA = 6
DET, HOU = 7
ARI, GB, JAC, LAR, NYG, TEN = 8
CHI, CLE, LAC, MIN, NE, PIT = 9
BAL, KC, OAK, PHI = 10
CAR, IND, MIA, NYJ, SF, TB =11
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Hi,

So I am trying to create a Fantasy Football spread sheet. I want to create a formula that will read the team name in the cell next to it and then spit out the bye week that team has assigned. For example if E4="ARI" then I want F4=8 for their bye week being week 8.


While it is easy to make it for one word like ARI and spit out 8. Is there a way to output the week number with the corresponding team initials.

The team initials and bye weeks are:
ATL, DEN, NO, WAS = 5
BUF, CIN, DAL, SEA = 6
DET, HOU = 7
ARI, GB, JAC, LAR, NYG, TEN = 8
CHI, CLE, LAC, MIN, NE, PIT = 9
BAL, KC, OAK, PHI = 10
CAR, IND, MIA, NYJ, SF, TB =11

create a mapping table with 2 columns: (1) Team Initial, (2) Bye Week then use this formula in F4:

=VLOOKUP(E4,mapping table,2,false)
 
Upvote 0

Forum statistics

Threads
1,216,731
Messages
6,132,389
Members
449,725
Latest member
Enero1

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