Sum Cells and assign to variable

  • Thread starter Thread starter Kitty
  • Start date Start date
K

Kitty

I have a cell that needs to show the result of a formula.

Both the numerator and denominator are made up of a series
of contiguous cells that are not subtotaled in their
worksheets. I do not need the numerator and denominator
values; just the result.

In my VBA code, I tried setting variable Numerator=Sum
("K6:K12"), and I received an error that variable Sum
wasn't defined. I know I can add each element to
Numerator separately, but would prefer not to, if that's
possible.

Thanks for any suggestions.

Kitty
 
One way:

Numerator = Application.WorksheetFunction.Sum(Range("K6:K12"))
 

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

Back
Top