how to calculate total Sum in Excel

Raj De Inno

I am producing last report for my venture. I need to ascertain the Sum of aggregate cells in my excel sheet. I have done the accompanying code. Be that as it may, its not computing the qualities.. Here is my code:

        Worksheet.Cells[20, 16].Formula =
                  "Sum(" + Worksheet.Cells[6, 16].Value + 
                 ":" + Worksheet.Cells[rowIndex, 16].Value + ")";

I need to figure the Cell No 16's Sum esteem and I will show it into Cells[20,16]. Its not working. Anybody help me to settle this?

Fratyx

Change the two occurrences of .Value in your code to .Address.

Update ... and add a = before the Sum:

Worksheet.Cells[20, 16].Formula =
        "=Sum(" + Worksheet.Cells[6, 16].Address + 
        ":" + Worksheet.Cells[rowIndex, 16].Address + ")";

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to calculate the total of a sum in JSTL

From Dev

How to calculate sum of multiplied rows in Excel

From Dev

how to calculate sum (Total) of DataTable Columns using C#

From Dev

How to calculate the total sum of items in array element using AngularJS

From Dev

How does CALCULATE, SUM, MAX and <= logically work for cumulative total?

From Dev

How to calculate the total sum of items in array element using AngularJS

From Dev

how to calculate sum (Total) of DataTable Columns using C#

From Dev

Dynamically calculate the total sum and vat

From Dev

How can i calculate total positive ,total negative price and sum using Node.js and Mongoose

From Dev

How to write ratio function in excel such that total sum is 100?

From Dev

How to write ratio function in excel such that total sum is 100?

From Dev

How to calculate % of total in MySQL

From Dev

How to calculate % of total in MySQL

From Dev

Javascript: how to calculate the total

From Dev

How to calculate vat using Checkbox after I get total_sum

From Dev

How to calculate of SUM of values?

From Dev

How to calculate "running total" in SQL

From Dev

How to calculate total price in php

From Dev

How to calculate the total distance traveled?

From Dev

How to Calculate Total Less Duplicates?

From Dev

How to calculate Last column total

From Dev

How to calculate a running total in view?

From Dev

How to calculate total price of order?

From Dev

How to Calculate Bill Total JS

From Dev

How do I calculate the total difference between two columns of figures in Google spreadsheet/Excel?

From Dev

Excel : Sum Total of [h]:mm formatted column

From Dev

sum total with the blank cell under in excel/VBA

From Dev

Using $sum to calculate the total value in a object, mongoose/mongodb

From Dev

Auto calculate total sum of a column with numeric data in datatable footer

Related Related

  1. 1

    How to calculate the total of a sum in JSTL

  2. 2

    How to calculate sum of multiplied rows in Excel

  3. 3

    how to calculate sum (Total) of DataTable Columns using C#

  4. 4

    How to calculate the total sum of items in array element using AngularJS

  5. 5

    How does CALCULATE, SUM, MAX and <= logically work for cumulative total?

  6. 6

    How to calculate the total sum of items in array element using AngularJS

  7. 7

    how to calculate sum (Total) of DataTable Columns using C#

  8. 8

    Dynamically calculate the total sum and vat

  9. 9

    How can i calculate total positive ,total negative price and sum using Node.js and Mongoose

  10. 10

    How to write ratio function in excel such that total sum is 100?

  11. 11

    How to write ratio function in excel such that total sum is 100?

  12. 12

    How to calculate % of total in MySQL

  13. 13

    How to calculate % of total in MySQL

  14. 14

    Javascript: how to calculate the total

  15. 15

    How to calculate vat using Checkbox after I get total_sum

  16. 16

    How to calculate of SUM of values?

  17. 17

    How to calculate "running total" in SQL

  18. 18

    How to calculate total price in php

  19. 19

    How to calculate the total distance traveled?

  20. 20

    How to Calculate Total Less Duplicates?

  21. 21

    How to calculate Last column total

  22. 22

    How to calculate a running total in view?

  23. 23

    How to calculate total price of order?

  24. 24

    How to Calculate Bill Total JS

  25. 25

    How do I calculate the total difference between two columns of figures in Google spreadsheet/Excel?

  26. 26

    Excel : Sum Total of [h]:mm formatted column

  27. 27

    sum total with the blank cell under in excel/VBA

  28. 28

    Using $sum to calculate the total value in a object, mongoose/mongodb

  29. 29

    Auto calculate total sum of a column with numeric data in datatable footer

HotTag

Archive