Sum the amount of the cells with a background RED

drom

Well-known Member
Joined
Mar 20, 2005
Messages
540
Office Version
  1. 2021
  2. 2019
  3. 2016
  4. 2013
  5. 2011
  6. 2010
  7. 2007
Hi and thanks in advance!

I have the following name created in my workbook

BackGround=GET.CELL(63;INDIRECT("rc";FALSE))
so if I put in
A2 wich has a BackGround Colour equal to green the formula = BackGround I will get 43
A3 wich has a BackGround Colour equal to RED the formula = BackGround I will get 3
A4 wich has a BackGround Colour equal to Black the formula = BackGround I will get 1

This is working ok but I would like to sum for a given range the total if their BackGround Colour is equal to RED so equal to 3 according to BackGround formula

but when I use:
=SUMIF($Z$1:$Z$300;BackGround=3;$Z$1:$Z$300) I get 0
because the second parameter is not giving me a array

I was trying to use:
=SUMPRODUCT(--(BackGround(Z1:Z300)=3);Z1:Z300)
but does not work

Any idea on how to sum in for a given range the total sum for the cells with a Red background

I know how to do this using VBA.

I would like to know how can I do this using a formula
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
I know how to do this using VBA. I would like to know how can I do this using a formula.
As a curiosity, why? If you use GET.CELL, you still have to save the resulting workbook as macro-enabled.
 
Upvote 0
I do not know if using this say new formula the file is going to update the values fast.
using UDF's if I change from RED to xlnone, the UDF formula does not update the result
anyway my workbook has many other macros and for this I would like to know if is possible without macros and/or UDF's
I am using Get.Formula because I have seen in a web, but if you know any other way...
 
Last edited:
Upvote 0
If you found a way for it to work, it would still not update automatically when cell color is changed, because doing so doesn't trigger calculation. Excel doesn't consider color as data.
 
Upvote 0
Yes but F9 does not update the UDF formula based on the backGround color
but the formula BackGround=GET.CELL(63;INDIRECT("rc";FALSE))
is Updated everytime I press F9
This is why I would like to know if I can use a combination of Sumproduct with Get.Cell for a given range or Sumif + Get.Cell and/or...
 
Upvote 0
Yes but F9 does not update the UDF formula based on the backGround color
It will if you put Application.Volatile in the UDF.
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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