ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Simple formula question (https://www.excelbanter.com/excel-worksheet-functions/220749-simple-formula-question.html)

Cook[_2_]

Simple formula question
 

Starting at B2 of the "job log in" tab I would like every 13th cell to
equal every 1 cell of the B column of the "PM" tab.

So...

Job log in B2 = PM B2
Job log in B15 = PM B3
Job loh in B18 = PM B4 and so on.

Is there a formula I can put in PM B2 that I can drag down to say row
2500?


--
Cook
------------------------------------------------------------------------
Cook's Profile: http://www.thecodecage.com/forumz/member.php?userid=107
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=63550


[email protected]

Simple formula question
 
every 13th cell to
equal every 1 cell of


I dont understand what are wating please repharse this part of your quesiton

"Cook" wrote:


Starting at B2 of the "job log in" tab I would like every 13th cell to
equal every 1 cell of the B column of the "PM" tab.

So...

Job log in B2 = PM B2
Job log in B15 = PM B3
Job loh in B18 = PM B4 and so on.

Is there a formula I can put in PM B2 that I can drag down to say row
2500?


--
Cook
------------------------------------------------------------------------
Cook's Profile: http://www.thecodecage.com/forumz/member.php?userid=107
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=63550



Cook[_3_]

Simple formula question
 

Job log in B2 = PM B2
Job log in B15 = PM B3
Job log in B18 = PM B4 and so on.


I'm not real sure how else to explain it... sorry.


--
Cook
------------------------------------------------------------------------
Cook's Profile: http://www.thecodecage.com/forumz/member.php?userid=107
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=63550


Don Guillett

Simple formula question
 
This macro should do it

Sub foreachstep13()
j = 2
For i = 2 To 2500 Step 13
Cells(i, "b") = Sheets("sheet10").Cells(j, "b")
j = j + 1
Next i
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Cook" wrote in message
...

Starting at B2 of the "job log in" tab I would like every 13th cell to
equal every 1 cell of the B column of the "PM" tab.

So...

Job log in B2 = PM B2
Job log in B15 = PM B3
Job loh in B18 = PM B4 and so on.

Is there a formula I can put in PM B2 that I can drag down to say row
2500?


--
Cook
------------------------------------------------------------------------
Cook's Profile:
http://www.thecodecage.com/forumz/member.php?userid=107
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=63550




All times are GMT +1. The time now is 10:16 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com