Forum Discussion
LeDanJohnson
Sep 17, 2019Copper Contributor
Help with Excel formula
Hi, I am pulling my hair out trying to write an Excel formula for the following action - can you help. Essentially, depending on the value entered into A1, the value in A2 should be multiplied by 4, ...
- Sep 18, 2019
Subodh_Tiwari_sktneer
Sep 18, 2019Silver Contributor
I guess, it should be...
= 2*(A1+1)*A2*A3And what if A1=0?
If you don't want to calculate when A2=0 or blank, then it should be...
=IF(A1=0,"", 2*(A1+1)*A2*A3)And what if A1>4, would you like to calculate by following the pattern or you would not like to calculate then?
If you don't want to calculate if either A1=0 or A1>4 then...
=IF(OR(A1=0,A1>4),"", 2*(A1+1)*A2*A3)LeDanJohnson
Sep 18, 2019Copper Contributor
Subodh_Tiwari_sktneer Thanks for all your help - this works.
- Subodh_Tiwari_sktneerSep 18, 2019Silver Contributor
You're welcome! Glad we could help.
Now you may mark your question as Solved by choosing one of the posts which resolved your question as Best Answer/Response.
You may also click on Like buttons under the posts which you found helpful, that's another way to say thanks.