Forum Discussion
tkainz
Jan 21, 2019Copper Contributor
calculating sum of values in columns based upon column header
I have 12 columns of data representing the 12 months and a totals column. I would like a formula to total the individual values in each of the rows of the twelve columns but only if the respective c...
- Jan 21, 2019
Hello,
this is easy with the Sumifs function.
=Sumifs(3:3,$2:$2,"Actual")
In words: sum all the values in row 3 where row 2 has the text "Actuals" in the same column.
You can copy that formula down to apply to other rows below.
Does that help?
Jan 21, 2019
Hello,
this is easy with the Sumifs function.
=Sumifs(3:3,$2:$2,"Actual")
In words: sum all the values in row 3 where row 2 has the text "Actuals" in the same column.
You can copy that formula down to apply to other rows below.
Does that help?
- tkainzJan 21, 2019Copper Contributor
Perfect.... Thanks!!!