SUMIF question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a database referencing real estate property types (retail, industrial, office) in F3:F80, and property square footages in DK3:DV80 (1 column per month, 1 row per property), and the "Industrial" property type referenced in DL86. Because properties come & go throughout the year, I want to create a formula to sum the average square footages throughout the year by property type

I thought the following formula would work: =SUMIF(F3:F80,DL86,DK3:DV80)/12. However, this only returns the total of industrial square footages in column DK (1 month instead of the whole year) and then divides that by 12

Can anyone help?
 
Use this to find the average of each property type:
=SUMPRODUCT((F3:F80="Industrial")*(DK3:DV80))/COUNTIF(F3:F80,"Industrial")
You may then find the sum of the averages.
--
Greeting from the Gulf Coast!
http://myweb.cableone.net/twodays
Mark said:
I have a database referencing real estate property types (retail,
industrial, office) in F3:F80, and property square footages in DK3:DV80 (1
column per month, 1 row per property), and the "Industrial" property type
referenced in DL86. Because properties come & go throughout the year, I
want to create a formula to sum the average square footages throughout the
year by property type.
I thought the following formula would work:
=SUMIF(F3:F80,DL86,DK3:DV80)/12. However, this only returns the total of
industrial square footages in column DK (1 month instead of the whole year)
and then divides that by 12.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Using drop-down lists 4
sum of info in a range based on dates 4
Record Selection by Current As of Date 1
Question About Formula for 1 column 2
SUMIF 1
SUMIFS 4
Programming question 1
IF...THEN syntax question 2

Back
Top