Excel Help regarding formulas

jpirtle

New Member
Joined
Aug 25, 2015
Messages
3
I am trying to figure out 2 equations that I am stuck on.


Question 1:
I have a cell dedicated to the number of cars not cleaned (A91) and I want to pull data from a column of cells on the same spreadsheet that are labeled "# Cleans/month". The values of those cells (G79:G115) range from 0-4. I want cell (A91) to only show the number of cars not cleaned represented by 0. Is there a formula for that?


Question 2:
I have another cell dedicated to the number of cleanings past due for the cars (A94) and I want to pull data from a column of cells on the same spreadsheet that are labeled "Days since clean". The values of those cells (J79:J115) range from 0-120. I want cell (A94) to only show the number of cars past due on cleaning represented by numbers greater than 7. Is there a forumula for that?

Any help or suggestions would be greatly appreciated!
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Welcome to the forum.

Try

for zeros

=countif(G79:G115,0)

For >7

=countif(
J79:J115,">7")
 
Upvote 0

Forum statistics

Threads
1,216,128
Messages
6,129,036
Members
449,482
Latest member
al mugheen

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