Hi there
I have an Event booking form where the number of delegates allowed per room depends on the layout of the venue, e.g. if the event is in the Auditorium and people want round or square tables, the maximum number of people allowed in the venue is 60 people; however if they want to sit "cinema style" in the Auditorium, the maximum number of people allowed is 80 people. I have entered the following IF statement on my "Capacity" label, but the formula does not seem to work.
If(
VenueDD.SelectedText.Value in "Executive Dining(downstairs)" && LayoutDD.SelectedText.Value in "Round Tables";
"10";
VenueDD.SelectedText.Value in "Executive Dining(downstairs)" && LayoutDD.SelectedText.Value in "Square Tables";
"10";
VenueDD.SelectedText.Value in "Executive Dining(downstairs)" && LayoutDD.SelectedText.Value in "Cinema Style";
"15";
VenueDD.SelectedText.Value in "Auditorium" && LayoutDD.SelectedText.Value in "Round Tables";
"60";
VenueDD.SelectedText.Value in "Auditorium" && LayoutDD.SelectedText.Value in "Square Tables";
"60";
VenueDD.SelectedText.Value in "Auditorium" && LayoutDD.SelectedText.Value in "Cinema Style";
"80";
VenueDD.SelectedText.Value in "Room B307 & B308" && LayoutDD.SelectedText.Value in "Round Tables";
"16";
VenueDD.SelectedText.Value in "Room B307 & B308" && LayoutDD.SelectedText.Value in "Square Tables";
"16";
VenueDD.SelectedText.Value in "Room B307 & B308" && LayoutDD.SelectedText.Value in "Cinema Style";
"20";""
)
Your assistance would be appreciated.
Janine