Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have a spreadsheet of 20 rows (and 20 coulmns). The bottom row of each
column is a total. I would like the user to be able to select the rows (using like checkboxes or something?) to include in the column total row. Is this possible? |
#2
![]() |
|||
|
|||
![]()
A4:A6 = {0,1} - your switches
In subtotal row write: =SUM($A$4:$A$6*C$4:C$6) followed by CTRL+SHIFT+ENTER and copy to other columns. -- HTH, Tomek Polak, http://vba.blog.onet.pl |
#3
![]() |
|||
|
|||
![]()
With lots of coding you could add checkboxes, etc. An alternative would be
to add a column to one side of the other of your current range and tell the users to enter "Y" or "x" in each row they want selected and then add a new formula too total each column that uses a SUMIF() formula to only add the rows where the user has entered the indicator. If that column was A, and the 20 rows started in row 2, the new formula for totalling column B would be =SUMIF($A$2:$A$21,"Y",B$2:B$21) "ralph r" wrote: I have a spreadsheet of 20 rows (and 20 coulmns). The bottom row of each column is a total. I would like the user to be able to select the rows (using like checkboxes or something?) to include in the column total row. Is this possible? |
#4
![]() |
|||
|
|||
![]()
Alternatively:
=SUMPRODUCT($A$4:$A$6,C$4:C$6) with simple Enter |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
need to replicate insertting a row from 1 worksheet into another | Excel Discussion (Misc queries) | |||
How to get more than 65000 rows in and excel spreadsheet | Excel Discussion (Misc queries) | |||
make first few rows print on every page? | New Users to Excel | |||
how do I make excel 2003 my default spreadsheet over ms works spr. | Setting up and Configuration of Excel | |||
Data Filter - Not all rows in spreadsheet will display in Autofilt | Excel Worksheet Functions |