Forum Discussion
AUTO COPY AND PASTE
- beikmeOct 21, 2020Brass Contributor
- Rajesh_SinhaOct 21, 2020Iron Contributor
Check the column F in attached sheet, find the formula in cell F4 downwards,, I hope that you are looking for this.
In cell F3, you need to enter number smaller/prior than H3, like is 1 then 0. This will copy automatically in H4:H54, this may vary depends on the set of numbers to want to get.
Remember cell H4:H54 has formula ,, need to be handled carefully.
- beikmeOct 21, 2020Brass Contributor
I'm using this vba to print
Private Sub Worksheet_Change(ByVal Target As Range)
Dim KeyCells As RangeSet KeyCells = Range("F3")
If Not Application.Intersect(KeyCells, Range(Target.Address)) _
Is Nothing ThenActiveSheet.PrintOut
End If
End Sub
- Rajesh_SinhaOct 21, 2020Iron ContributorYou mean to say that you want to copy data from H2:H48 into F3 downwards ,, and this you want to automate,, like as soon you fill F3 with H2, then you are expecting excel to fill the sequence or you yourself wanna fill it ?
- beikmeOct 10, 2020Brass Contributor
something like this
So when i paste all the data in H like starting from one and down ( 1-2-3-4-5-6-7-8 are like example )
it would start copying from H2 down
copy one cell at the time to F3 so i can print it as son **bleep** its detect the call F3 have change
I need to print these labels
i dint know how many i get every time so need something that would auto detect and would not copy empty cells
Hope this helps