I have a spreadsheet with 3 columns
1=Booked, 2-Tentative, 3-Cancelled
then a i have a date field in column E and room nigts column F.
for example if it is booked type an x and booked column then type date and number of nights in column E and F.
What I want is an if formula in cell 8 to add all room nights in comunt in column F if the there's an x booked column.
How would I do that?
I type this but gave an error value?
thank you
1=Booked, 2-Tentative, 3-Cancelled
then a i have a date field in column E and room nigts column F.
for example if it is booked type an x and booked column then type date and number of nights in column E and F.
What I want is an if formula in cell 8 to add all room nights in comunt in column F if the there's an x booked column.
How would I do that?
I type this but gave an error value?
Code:
I have a spreadsheet with 3 columns
1=Booked, 2-Tentative, 3-Cancelled
then a i have a date field in column E and room nigts column F.
for example if it is booked type an x and booked column then type date and number of nights in column E and F.
What I want is an if formula in cell 8 to add all room nights in comunt in column F if the there's an x booked column.
How would I do that?
I type this but gave an error value?
[CODE]=if(ColumnBooked=X,Sum(ColumnF),"")