Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1
Default Jumping or Calculating

I am new to Excel. I'm trying to figure out if there's some way to lets say
go from A1 to A50 and keep jumping in incriments of 50 cells everytime.
Also, I am trying to figure out how to calculate the avg of each month till
the end of using all the days. How would I also go about that. Thanks for
the help.

wkoziol
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 10,124
Default Jumping or Calculating

Sub jump50()
For i = 1 To 200 Step 50
Cells(i, "a").Select
MsgBox ActiveCell.Address
Next i
End Sub

Now what?


More explanation of your second question.
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"wkoziol" wrote in message
...
I am new to Excel. I'm trying to figure out if there's some way to lets
say
go from A1 to A50 and keep jumping in incriments of 50 cells everytime.
Also, I am trying to figure out how to calculate the avg of each month
till
the end of using all the days. How would I also go about that. Thanks
for
the help.

wkoziol


  #3   Report Post  
Posted to microsoft.public.excel.newusers
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Jumping or Calculating

To retrieve at intervals of 50 cells, beginning with A1
In any starting cell, say in B2:
=OFFSET($A$1,ROWS($1:1)*50-50,)
Copy B2 down as far as required to return what's in A1, A51, A101, etc

To average intervals of 50 cells, beginning with A1
place this in any starting cell, say in C2:
=AVERAGE(OFFSET($A$1,ROWS($1:1)*50-50,,50))
Copy C2 down as far as required to return the average of
A1:A50, A51:A100, A101:A150, etc

--
Max
Singapore
http://savefile.com/projects/236895
Downloads:17,000 Files:358 Subscribers:55
xdemechanik
---
"wkoziol" wrote:
I am new to Excel. I'm trying to figure out if there's some way to lets say
go from A1 to A50 and keep jumping in incriments of 50 cells everytime.
Also, I am trying to figure out how to calculate the avg of each month till
the end of using all the days. How would I also go about that. Thanks for
the help.

wkoziol

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Help with Jumping to a Worksheet Susan Excel Discussion (Misc queries) 3 June 19th 08 09:58 PM
Jumping Scroll Mountain_Man_Jeff Excel Discussion (Misc queries) 0 February 4th 08 10:22 PM
jumping around raulavi Excel Discussion (Misc queries) 11 September 9th 07 01:28 AM
Jumping to a certain cell The Fool on the Hill Excel Discussion (Misc queries) 3 May 12th 07 05:07 PM
Page jumping Alarmbloke Excel Discussion (Misc queries) 0 December 12th 05 10:01 AM


All times are GMT +1. The time now is 02:13 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"