Find the column by name and to sum that column

GirishDhruva

Active Member
Joined
Mar 26, 2019
Messages
308
Hi everyone i am posting for 1st time in MrExcel, Help me to solve this.
Here is the table.
AppleBallCatDogElephant
12343234324544366
12343234324544366
12343234324544366
12343234324544366
12343234324544366
12343234324544366
12343234324544366
12343234324544366
12343234324544366
12343234324544366
12343234324544366
12343234324544366
12343234324544366
12343234324544366
12343234324544366
12343234324544366
12343234324544366
12343234324544366

<colgroup><col><col><col span="3"></colgroup><tbody>
</tbody>
From the above table i need to find "Ball" and sum that column and that should be shown in a particular cell in VBA
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Hi & welcome to MrExcel.
How about


Excel 2013/2016
ABCDEFG
1AppleBallCatDogElephantBall
2123432343245443667776
312343234324544366
412343234324544366
512343234324544366
612343234324544366
712343234324544366
812343234324544366
912343234324544366
1012343234324544366
1112343234324544366
1212343234324544366
1312343234324544366
1412343234324544366
1512343234324544366
1612343234324544366
1712343234324544366
1812343234324544366
1912343234324544366
BG2
Cell Formulas
RangeFormula
G2=SUM(INDEX(A2:E19,0,MATCH(G1,A1:E1,0)))
 
Upvote 0
In that case
Code:
Sub GirishDhruva()
   Range("G3").Value = [=SUM(INDEX(A2:E19,0,MATCH(G1,A1:E1,0)))]
End Sub
 
Upvote 0
Thanks again sir but i think i have not asked question clearly,My question is "first i need to find the column with the name 'Ball' then it should add with that column values and give me the sum"
 
Upvote 0
If you want to hard-code the column header try
Code:
Sub GirishDhruva()
   Range("G3").Value = [=SUM(INDEX(A2:E19,0,MATCH("Ball",A1:E1,0)))]
End Sub
 
Upvote 0
Try
Code:
Sub chk()
   Dim Fnd As Range

   Set Fnd = Range("1:1").Find("Ball", , , xlWhole, , , False, , False)
   If Not Fnd Is Nothing Then Fnd.EntireColumn.Copy
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,110
Messages
6,123,139
Members
449,098
Latest member
Doanvanhieu

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