excel - How to shift the reference cell in a formula? -


how can turn a1 g1 in following formula:

=sum(a1+b1) 

i mean, want shift first argument 5 cell right, new formula be:

=sum(g1+b1) 

this shout right formula...

=sum(offset(a1,0,5),b1) 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -