Need an if excel formula

johnwells13

New Member
Joined
Aug 29, 2017
Messages
2
A bunch of people are staying in an airbnb with me. They are all staying different nights though. I am creating a excell sheet and having them put an x for every night they are staying. I am wanting a formula that adds the total times an "x" appears in each column, and then have total rate per night divided by that value. Help please!
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
You haven't provided any specifics, but have a look at the total rate per night divided by a countif.
So, assuming the the "x"s are in col "B" from rows 1 to 10 AND the total is in C10, you would use

Code:
=C10/COUNTIF(B1:B10,"x")
 
Upvote 0
You haven't provided any specifics, but have a look at the total rate per night divided by a countif.
So, assuming the the "x"s are in col "B" from rows 1 to 10 AND the total is in C10, you would use

Code:
=C10/COUNTIF(B1:B10,"x")


Perfect, Thank you!
 
Upvote 0

Forum statistics

Threads
1,216,075
Messages
6,128,657
Members
449,462
Latest member
Chislobog

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top