You need to sign in to do that
Don't have an account?

Create a Case statement with and IF in it
I want to create a CASE statement for a frmula field that does this
if x or y = true then
A
if x and y = true
B
else
C
if x or y = true then
A
if x and y = true
B
else
C
IF(OR(A,B),"A",IF(AND(X,Y),"B","C"))