Sum Formula Help

akvpv6

New Member
Joined
May 1, 2023
Messages
24
Office Version
  1. 365
Platform
  1. Windows
I am looking for help creating a sum function for my attached spreadsheet. In column G (Total Activity) I would like to show the sum of column D (Quote Count) and column F (Modification Count). However, in the formula I would like it to be crafted so that column G only populates once column D and column F data has been entered, example: if I enter 10 into column D I do not want column G to show 10 while I wait to update column F.

Thank you!
 

Attachments

  • Excel Ex1.jpg
    Excel Ex1.jpg
    56.5 KB · Views: 8

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Happy to help! :cool:
actually one further question if you dont mind! how would I alter your formula so that it carries down the entire column? right now it only carries down if I drag it down or use the fill down feature
 
Upvote 0
You can use the G2 formula to spill down the column. Just change the ranges to be larger than the maximum rows you expect. So change the D2:D11 to D2:D1000 for example. I don't recommend using whole column ranges, since that would slow down your sheet. You could try the H2 formula, which figures out how many rows to calculate based on the filled rows in column A.

Book2
ABCDEFGH
1Fiscal YearQuote CountModification CountTotal ActivityTotal Activity
211  
322
432355
545388
65
76
876
982244
109
11102355
12
Sheet7
Cell Formulas
RangeFormula
G2:G11G2=IF((D2:D11<>"")*(F2:F11<>""),D2:D11+F2:F11,"")
H2:H11H2=LET(c,COUNT(A:A)+1,q,D2:INDEX(D:D,c),m,F2:INDEX(F:F,c),IF((q<>"")*(m<>""),q+m,""))
Dynamic array formulas.
 
Upvote 0
Solution

Forum statistics

Threads
1,223,236
Messages
6,170,912
Members
452,366
Latest member
TePunaBloke

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