Feb 10 2023 09:18 AM
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 entries in column C (P, A, S, or D).
Anyone up to the challenge?
Feb 10 2023 09:36 AM
Feb 10 2023 10:02 AM
SolutionI 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,""),"")
Feb 11 2023 07:13 AM
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.
Feb 11 2023 10:34 AM
Feb 11 2023 04:29 PM
@dscheikey That didn't work. But this did since there were only 2 input variables in column B (A orB), but 4 in column C (P, C, S, D). Using If and Switch worked perfectly without having to nest: