Reference Row with Cell Value

helpexcel

Well-known Member
Joined
Oct 21, 2009
Messages
656
Hi - I know how to do this with VBA, but is there a way to do it with a "regular" formula. So something like if C1 = 27 the Formula would be sum (A&C1:A100) which would sum A27 to A100.
 
Last edited:

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Like
=SUM(INDIRECT("A"&C1):A100)
 
Upvote 0
hi - i know how to do this with vba, but is there a way to do it with a "regular" formula. So something like if c1 = 27 the formula would be sum (a&c1:a100) which would sum a27 to a100.
Code:
=if(c1=27,sum(a27:a100),"")

Not sure which way you mean?
 
Last edited:
Upvote 0
INDIRECT is Volatile... if you do it this way, the formula will be non-Volatile:

=SUM(INDEX(A:A,27):A100)
 
Upvote 0

Forum statistics

Threads
1,214,926
Messages
6,122,306
Members
449,079
Latest member
juggernaut24

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