Forum Discussion
SeanM365
Oct 29, 2020Copper Contributor
Excel Formula Help - Add specific value based on cell value
Hello all, Would appreciate some help with building a formula. I've provided a more basic example of what I need below. I want to complete Column C, by adding a certain value to Column B, depend...
- Oct 29, 2020
You may simply try this...
In C1
=B1+IF(A1="Up",50,IF(A1="Down",100,0))
and then copy it down.
SeanM365
Oct 29, 2020Copper Contributor
Subodh_Tiwari_sktneerThis worked perfectly, thank you.
Subodh_Tiwari_sktneer
Oct 29, 2020Silver Contributor
You're welcome SeanM365! Glad it worked as desired.