Hilary, You've captured the last column in the header in variable "x". So, your 
question is how to modify:  Sheet1.Range("e1:h1").Copy to make use of this 
variable column. One option (of MANY) would be to make use of a variation of 
the Range() object. Technically, the elements of the Range() object is 
"Cells".one way to identify the cell is using "e1"but another way would 
be:Cells(1,"E") So, e1:h1 can be written Cells(1,"E"),Cells(1,"H") plugging 
this into your statement, and implementing the use of the "x" variable, you can 
use: Sheet1.Range(Cells(1, "E"), Cells(1, x)).Copy (Personally, I'd use a 
variable like "LastCol" instead of "x", but that my OCD talking) hope this is 
what you're looking for. Paul-----------------------------------------
“Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can.” - John Wesley
-----------------------------------------
 
      From: Hilary Lomotey <resp...@gmail.com>
 To: excel-macros <EXCEL-MACROS@googlegroups.com> 
 Sent: Thursday, April 30, 2015 4:39 AM
 Subject: $$Excel-Macros$$ Copy Dynamically From Column and Pate
   
Hello Bosses,
i have this code am using to copy Dates from column of sheet1 and transpose 
paste it in sheet2. the issue is to dynamically find the column header to copy 
the data to eg copy from E1 to J1, assuming i enter data in column K1 i need an 
assistance with code  to dynaically coopy from EI to k1. i can get the last 
column but dont know how to get the column header . please assist. thanks



Sub copytranspose()

Dim x As Longx = Sheet1.Cells(1, 
Columns.Count).End(xlToLeft).ColumnApplication.ScreenUpdating = False'need to 
make column dynamic so if i put a value in column i it will dynamically pick 
and copySheet1.Range("e1:h1").Copy
Sheet2.Range("A2").PasteSpecial xlPasteValues, 
Transpose:=TrueApplication.CutCopyMode = FalseApplication.ScreenUpdating = 
TrueEnd Sub
-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES
 
1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.
 
NOTE : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


   

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.

Reply via email to