validated list returning a formula that adds next row number?

Truman46

New Member
Joined
Oct 8, 2015
Messages
25
Hi excel gurus, Just wondering if someone could help me out please. I want to create a validated list where if someone chooses and option from the list it uses a formula that adds the next row number to the end of the formula.

So for example my list option would be "alarm on and next step". The formula for this is -(1*30+"next step") so in my example below when I choose "Alarm on and next step from the list I want it to put the value of the formula into the Setting column. But it has to add the next steps value so in this case it would be -(1*30+5) because C5 is the next step.

Thanks heaps.

StepTempTimeSettingProgram
C466T4-35"alarm on and next step"
C566T50Pause

<tbody>
</tbody>
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Hi,

Are you adding 5 because of the number 5 IN the value C5? or C5 happens to be in row 5?
 
Last edited:
Upvote 0
Im adding 5 because C5 is the next step, regardless of what row number it is. It could also be C8 or even C15 is some instances. Its always the NEXT step number.
 
Upvote 0
Got interrupted while posting, preparing diner...

If it Always the Number for the next step, according to what you said in post #3 , then use this, but I don't understanding why 1*30, and not just 30:


Book1
CDEFG
3StepTempTimeSettingProgram
4C466T4-35alarm on and next step
5C566T50Pause
Sheet62
Cell Formulas
RangeFormula
F4=IF(G4="alarm on and next step",-(1*30+MID(OFFSET(F4,1,-3),2,255)),0)


Change the "Value if False" at end of formula to whatever you need, I used 0.
 
Upvote 0
You can also use this:


Book1
ABCDE
1StepTempTimeSettingProgram
2C466T4-35alarm on and next step
3C566T50Pause
Sheet62
Cell Formulas
RangeFormula
D2=IF(E2="alarm on and next step",-(1*30+MID(A3,2,255)),0)
 
Upvote 0
I don't understanding why 1*30, and not just 30:/QUOTE]

Ahh Thats because there are a few different alarm parameters such as Al2 off is 5*30+Next step. Al1 on = 2*30+next step etc etc.

So how do I set it up for a few different options such as below? So I choose an option from the drop down validated list under Program. And it puts a value into setting based on the formulas shown. Obviously Hold alarm 1 minute and Pause are easy but how do I put it all into a nested formula. Or can I use VLookup for this?

Thanks for your help.

SettingProgram
=-(1*30+next step)Alarm2 on and next step
1Hold alarm 1 minute
=-(5*30+next step)Alarm 2 off and next step
0Pause

<tbody>
</tbody>
 
Upvote 0
Yes, probably a good idea to use a Table for the formula, either VLOOKUP or INDEX/MATCH, you can use the same list for you drop down:


Book1
ABCDEFGH
1StepTempTimeSettingProgram
2C466T4-155Alarm 2 off and next stepAlarm on and next step1
3C566T50PauseAlarm 2 on and next step1
4Hold alarm 1 minute
5Alarm 2 off and next step5
6Pause
Sheet62
Cell Formulas
RangeFormula
D2=IF(E2="Hold alarm 1 minute",1,IF(E2="Pause",0,-(VLOOKUP(E2,G2:H6,2,0)*30+MID(A3,2,255))))


D2 formula copied down.
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,865
Members
449,052
Latest member
Fuddy_Duddy

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