Forum Discussion
jensor4
Feb 10, 2023Copper Contributor
ACTION TRACKING SHEET
I am trying to come up with formula that will appear in column G that depends on entries in columns B and C. There are only 2 permissable entries in column B (A or B). There are 4 permissisable entr...
jensor4
Feb 10, 2023Copper Contributor
I've tried to do this by nesting if functions but can't get past 2 nested functions.
dscheikey
Feb 10, 2023Bronze Contributor
I would solve this with SWITCH(). There are certainly countless variations.
=SWITCH(B4,"A",E4*(100*D4-100*F4-B$1),"B",SWITCH(C4,"P",E4*(100*F4-100*D4-B$1),"C",E4*(100*F4-100*D4-B$1),"S",E4*(F4-D4),"D",D4,""),"")
- jensor4Feb 11, 2023Copper Contributor
I liked your response, however it doesn't give the correct result in cell D5. I edited and came up with a potential solution that seems to work, but I did get a circular reference warning. Below is a screen shot showing what your suggestion yielded and beneath is what I came up. Note I simplified the setup for editing efficiency.
- dscheikeyFeb 11, 2023Bronze Contributor