Two Plus Two Newer Archives  

Go Back   Two Plus Two Newer Archives > Internet Gambling > Software
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 03-30-2006, 04:49 PM
Hobbs. Hobbs. is offline
Senior Member
 
Join Date: May 2005
Location: Not Boston
Posts: 5,095
Default simple excel Q

I guess this is the right forum, but MODs feel free to direct me elsewhere.

All I want to do is create a list in say column g ranging from 1:100 that takes every 113th number from column A (3,116,229,etc..). This should be easy, but I can't figure it out, any help???
Reply With Quote
  #2  
Old 03-30-2006, 04:55 PM
TheNoocH TheNoocH is offline
Senior Member
 
Join Date: Sep 2004
Location: NJ via Philly
Posts: 104
Default Re: simple excel Q

would this be interpretting what you are after? and essentially you just want a formula to do it automatically so you can drag down rather than do it manually?
G1=A3
G2=A116
G3=A229
???
Reply With Quote
  #3  
Old 03-30-2006, 05:01 PM
Hobbs. Hobbs. is offline
Senior Member
 
Join Date: May 2005
Location: Not Boston
Posts: 5,095
Default Re: simple excel Q

it drags it down like this

G1 = A3
G2 = A116
G3 = A229
<drags down>
G4 = A6
G5 = A119
G6 = A232

??
Reply With Quote
  #4  
Old 03-30-2006, 05:02 PM
Hobbs. Hobbs. is offline
Senior Member
 
Join Date: May 2005
Location: Not Boston
Posts: 5,095
Default Re: simple excel Q

yeah, it's going to be a major pain to do it manually.
Reply With Quote
  #5  
Old 03-30-2006, 05:11 PM
TheNoocH TheNoocH is offline
Senior Member
 
Join Date: Sep 2004
Location: NJ via Philly
Posts: 104
Default Re: simple excel Q

see if this works...

=OFFSET($A$1,113*(ROW()-1)+2,0)

or

=INDEX(A:A,(ROW()-1)*113+3)

or

=INDIRECT("A"&(ROW()-1)*113+3)


Either of these should work...
I think you're best bet is the INDEX one
Reply With Quote
  #6  
Old 03-30-2006, 05:26 PM
RatFink RatFink is offline
Senior Member
 
Join Date: Jan 2005
Location: Not close enough to Ljubljana
Posts: 468
Default Re: simple excel Q

No excel expert, but try this in cell G1

=INDIRECT("A"&(113*(ROW()-1)+1))

Then copy/paste that from G1 to G1..100
You will then get in column G1.100 the value of every 113th row in column A. G1 = A1, G2 = A114, G3 = A227

Not sure if I read your problem correctly though.
Reply With Quote
  #7  
Old 03-30-2006, 05:40 PM
Hobbs. Hobbs. is offline
Senior Member
 
Join Date: May 2005
Location: Not Boston
Posts: 5,095
Default Re: simple excel Q

thanks guys,

It looks like I'm actually just going to end up writing something in IDL or matlab to process this data as I just realized my output is not in a form of scientific notation that excel understands. Anyway, the 'indirect' did work...
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 09:10 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.