Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 184
Default Programming Cell ID's

I have a very basic issue in excel and I can't for the life of me find the
solution. I have a dense worksheet of data and I want to distill some of the
information into a much shorter list. The data is ordered and the
information I want to pull out from the big sheet and put in the little sheet
occurs in the same column in every 30th cell. In my new sheet, I want my
column of information to refer to every 30th cell. In other words, I want
h28, h58, h88, h118, etc. Unfortunately, I don't know how to make excel
automate this process (there's too much info for me to do it by hand). Does
anyone know how to do this? Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 96
Default Programming Cell ID's

Try the below formula...

=INDIRECT(ADDRESS(ROW()*30,1,1,1,"Sheet2"))

Where Sheet2 is the name of the sheet that you want to reference. Start the
formula in row1 of your new sheet and copy the formula down for as many rows
as you need. If you don't want to start the formula in row 1 of your new
sheet you will have to enter the formula
=INDIRECT(ADDRESS(ROW()*30-X,1,1,1,"Sheet2")) Where X is the number of rows
you need to subtract to get the formula to work right.

Hope this helps.


"Jeremy" wrote:

I have a very basic issue in excel and I can't for the life of me find the
solution. I have a dense worksheet of data and I want to distill some of the
information into a much shorter list. The data is ordered and the
information I want to pull out from the big sheet and put in the little sheet
occurs in the same column in every 30th cell. In my new sheet, I want my
column of information to refer to every 30th cell. In other words, I want
h28, h58, h88, h118, etc. Unfortunately, I don't know how to make excel
automate this process (there's too much info for me to do it by hand). Does
anyone know how to do this? Thanks.

  #3   Report Post  
Posted to microsoft.public.excel.misc
bj bj is offline
external usenet poster
 
Posts: 1,397
Default Programming Cell ID's

try
in A1 of Sheet2
=indirect("'Sheet1'H"&((Row()-1)*30+28)
and copy down


"Jeremy" wrote:

I have a very basic issue in excel and I can't for the life of me find the
solution. I have a dense worksheet of data and I want to distill some of the
information into a much shorter list. The data is ordered and the
information I want to pull out from the big sheet and put in the little sheet
occurs in the same column in every 30th cell. In my new sheet, I want my
column of information to refer to every 30th cell. In other words, I want
h28, h58, h88, h118, etc. Unfortunately, I don't know how to make excel
automate this process (there's too much info for me to do it by hand). Does
anyone know how to do this? Thanks.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,440
Default Programming Cell ID's

Hi Jeremy,

In row1:

=INDIRECT("sheet1!h"&28+(ROW()-1)*30)

Copy down as far as you need and adjust sheet name and start row if necessary

--
Kind regards,

Niek Otten
Microsoft MVP - Excel


"Jeremy" wrote in message ...
|I have a very basic issue in excel and I can't for the life of me find the
| solution. I have a dense worksheet of data and I want to distill some of the
| information into a much shorter list. The data is ordered and the
| information I want to pull out from the big sheet and put in the little sheet
| occurs in the same column in every 30th cell. In my new sheet, I want my
| column of information to refer to every 30th cell. In other words, I want
| h28, h58, h88, h118, etc. Unfortunately, I don't know how to make excel
| automate this process (there's too much info for me to do it by hand). Does
| anyone know how to do this? Thanks.


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,231
Default Programming Cell ID's

"Jeremy" wrote...
....
occurs in the same column in every 30th cell. In my new sheet, I want my
column of information to refer to every 30th cell. In other words, I want
h28, h58, h88, h118, etc. Unfortunately, I don't know how to make excel

....

Three responses all using INDIRECT. If you like slow recalculation, use
INDIRECT. If you have any interest in faster recalc, and if the first such
formula would be in cell B2 in newsheet, try

newsheet!B2:
=INDEX(othersheet!$H:$H,ROWS(B$2:B2)*30-2)

and fill down.


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
How to store email id's? Raj Babbar Excel Discussion (Misc queries) 1 January 14th 07 04:52 AM
Unique ID's Jill Curly via OfficeKB.com New Users to Excel 2 September 12th 05 04:01 AM
User ID's CCloud Excel Worksheet Functions 4 August 11th 05 09:58 PM
column id's wolfmasterr Setting up and Configuration of Excel 1 May 23rd 05 04:02 PM
Face ID's Michael Excel Discussion (Misc queries) 1 December 22nd 04 05:04 PM


All times are GMT +1. The time now is 01:54 AM.

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"