Need Formula based on selection from a List.

TSing3

Board Regular
Joined
Jan 7, 2015
Messages
54
In column E I can select 4 words from a list: Quick, Standard, Major, and Advanced. If I select Quick in column E, I want the adjacent cell in column F to automatically populate 2018QK1. If I select Standard in the next cell in column E, I want the adjacent cell to populate 2018SK1. Selecting Major would populate 2018MK1 and Advanced would populate 2018AK1.

How do I fix the sheet so he next time I select Quick the adjacent cell would populate 2018QK2 since I already have a 2018QK1? Same thing for Standard, Major, and Advanced as well.
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.

Book1
EF
2Quick2018QK1
3Standard2018SK1
4Major2018MK1
5Advanced2018AK1
6Quick2018QK2
7Standard2018SK2
8Standard2018SK3
Sheet1
Cell Formulas
RangeFormula
F2=IF($E2="","","2018"&LEFT($E2,1)&"K"&COUNTIF($E$1:$E1,$E2)+1)


WBD
 
Upvote 0
Ok, how would I make it to where only the number changes?

For example:

Quick - 2018QK1
Standard - 2018SK2
Major - 2018MK3
Advanced - 2018AK4
Quick - 2018QK5
Standard - 2018SK6
Major - 2018MK7
Advanced - 2018AK8
 
Last edited:
Upvote 0

Book1
EF
2Quick2018QK1
3Standard2018SK2
4Major2018MK3
5Advanced2018AK4
6Quick2018QK5
7Standard2018SK6
8Standard2018SK7
Sheet1
Cell Formulas
RangeFormula
F2=IF($E2="","","2018"&LEFT($E2,1)&"K"&COUNTA($E$2:$E2))


WBD
 
Upvote 0

Forum statistics

Threads
1,214,904
Messages
6,122,169
Members
449,070
Latest member
webster33

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