Copy formula from one sheet to another but in every other cell

buksie

New Member
Joined
Aug 22, 2014
Messages
6
Hi

I want to copy values from sheet 1 to Sheet2. Sheet1 is every 9th cell and sheet is consecutive down 128 times

Sheet1 sheet2
AJ15 H8 =Sheet1!AJ15
AJ24 H9 =Sheet1!AJ24
AJ33 H10 =Sheet1!AJ33


AJ1158 H135=Sheet1!AJ1158


Please help.
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Hi

In the second sheet col H8 - H135". I'm using a Macro to sort the values just read in from sheet1. But it seems that this formula doesn't want to allow the sort to work.

Sub Betterball_Score_Sort()
'
' Nett_Score_Sort Macro
' Macro recorded MC MOSTERT
'

'
ActiveSheet.Unprotect
Range("A8:J135").Select
Selection.Sort Key1:=Range("H8"), Order1:=xlDescending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
ActiveSheet.Protect
End Sub
 
Upvote 0
You can't sort a range where the cells in the Key column contain formulas that refer to an external worksheet, sorry.
 
Upvote 0

Forum statistics

Threads
1,223,483
Messages
6,172,532
Members
452,463
Latest member
Debz

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top