copying a line for an X number of times

AVRAHAMROOS

New Member
Joined
Nov 24, 2016
Messages
21
Scenario:

1. I paste a number of text lines in Sheet1 starting in A1 (only one column)

2. In Sheet2, in Cell H1 I use a COUNTA function which tells me how many lines I added to Sheet1

3. I have a formula in Sheet 2 cell B1 that looks at line 1 of the text I added in Sheet1 and returns a numerical value based on it.

4. I want to automatically (Macro) copy that formula downwards for the number of lines I added (which is given in call H1)

How do I do this?
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Hi, welcome to the forum.

Something like this maybe:

Code:
Sub m()
With Sheets("Sheet2")
    .Range("B1").AutoFill Destination:=.Range("B1:B" & .Range("H1").Value), Type:=xlFillDefault
End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,968
Messages
6,122,506
Members
449,089
Latest member
RandomExceller01

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