Forum Discussion
RoxanneZiegler
3 months agoQrew Assistant Captain
I tried this but the coma after Pacific Dunes 2 comes up yellow
IF(Contains([Salesroom]="Pacific Dunes 1","Pacific Dunes 2",
[Salesroom]="GS Landsend",([# of people in party]+1)*9.63
[Salesroom]="Playa Grande",([# of people in party]+1)*7.81
I also did it and still yellow at comma
IF(Contains([Salesroom]="Pacific Dunes 1","Pacific Dunes 2",
If(contains([Salesroom]="GS Landsend",([# of people in party]+1)*9.63)
IF(Contains[Salesroom]="Playa Grande",([# of people in party]+1)*7.81)
AdamKrzyzanek
3 months agoQrew Captain
What about this:
IF(
Contains([Salesroom],"Pacific Dunes 1")
,"Pacific Dunes 2"
,Contains([Salesroom],"GS Landsend")
,([# of people in party]+1)*9.63
,Contains([Salesroom],"Playa Grande")
,([# of people in party]+1)*7.81
)