$$Excel-Macros$$ Copy Dynamically From Column and Pate

2015-04-30 Thread Hilary Lomotey
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 Long
x = Sheet1.Cells(1, Columns.Count).End(xlToLeft).Column
Application.ScreenUpdating = False
'need to make column dynamic so if i put a value in column i it will
dynamically pick and copy
Sheet1.Range(e1:h1).Copy

Sheet2.Range(A2).PasteSpecial xlPasteValues, Transpose:=True
Application.CutCopyMode = False
Application.ScreenUpdating = True
End 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.


CopyTranspose.xlsm
Description: application/vnd.ms-excel.sheet.macroenabled.12


Re: $$Excel-Macros$$ Copy Dynamically From Column and Pate

2015-04-30 Thread Paul Schreiner
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 e1but 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.


Re: $$Excel-Macros$$ Copy Dynamically From Column and Pate

2015-04-30 Thread Ganesh N
Hi Hilary,

Please find the attachment.

Macro1: will copy the data from E1 to the end date which you have.

Macro2: will ask you the start column name. just enter e or which column
you want.

Thanks  Regards,
Ganesh N

On Thu, Apr 30, 2015 at 4:44 PM, Paul Schreiner schreiner_p...@att.net
wrote:

 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 Long
 x = Sheet1.Cells(1, Columns.Count).End(xlToLeft).Column
 Application.ScreenUpdating = False
 'need to make column dynamic so if i put a value in column i it will
 dynamically pick and copy
 Sheet1.Range(e1:h1).Copy

 Sheet2.Range(A2).PasteSpecial xlPasteValues, Transpose:=True
 Application.CutCopyMode = False
 Application.ScreenUpdating = True
 End 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.


-- 
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 

Re: $$Excel-Macros$$ Copy Dynamically From Column and Pate

2015-04-30 Thread Hilary Lomotey
Great Paul, this helped a lot.

Ashish, your solution in VBA lab also helped. thanks Guys am very grateful

On Thu, Apr 30, 2015 at 11:26 AM, Ganesh N ganeshg...@gmail.com wrote:

  [image: Boxbe] https://www.boxbe.com/overview This message is eligible
 for Automatic Cleanup! (ganeshg...@gmail.com) Add cleanup rule
 https://www.boxbe.com/popup?url=https%3A%2F%2Fwww.boxbe.com%2Fcleanup%3Ftoken%3DFeWiD1LmAI5MwPVMusrpKZoEe0mkN0bh6c%252B%252F4ec3XyDQGTiG5KhLA7mBSOJ1pxc8FDlbh0HzSsM83mIP19SNNYWfSfVOZzkaEEcIIvPUvx0%252FKAOCyduT0r8NxtWueD2MSCxeuzk0%252Bbw%253D%26key%3D0ix%252BtKJ2aG9v5hZDxJ0HWNjs6D7dsKj1rhULZ4plDJ0%253Dtc_serial=21184825875tc_rand=151015672utm_source=stfutm_medium=emailutm_campaign=ANNO_CLEANUP_ADDutm_content=001
 | More info
 http://blog.boxbe.com/general/boxbe-automatic-cleanup?tc_serial=21184825875tc_rand=151015672utm_source=stfutm_medium=emailutm_campaign=ANNO_CLEANUP_ADDutm_content=001

 Hi Hilary,

 Please find the attachment.

 Macro1: will copy the data from E1 to the end date which you have.

 Macro2: will ask you the start column name. just enter e or which column
 you want.

 Thanks  Regards,
 Ganesh N

 On Thu, Apr 30, 2015 at 4:44 PM, Paul Schreiner schreiner_p...@att.net
 wrote:

 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 Long
 x = Sheet1.Cells(1, Columns.Count).End(xlToLeft).Column
 Application.ScreenUpdating = False
 'need to make column dynamic so if i put a value in column i it will
 dynamically pick and copy
 Sheet1.Range(e1:h1).Copy

 Sheet2.Range(A2).PasteSpecial xlPasteValues, Transpose:=True
 Application.CutCopyMode = False
 Application.ScreenUpdating = True
 End 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) 

$$Excel-Macros$$ Re: Copy Dynamically From Column and Pate

2015-04-30 Thread Mandeep Baluja




You can use inputbox to copy a range or a header, clear your quesiton by 
putting data in output sheet2.so that we can understand what need to be 
 copy.


On Thursday, April 30, 2015 at 2:09:48 PM UTC+5:30, hilary lomotey wrote:

 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 Long
 x = Sheet1.Cells(1, Columns.Count).End(xlToLeft).Column
 Application.ScreenUpdating = False
 'need to make column dynamic so if i put a value in column i it will 
 dynamically pick and copy
 Sheet1.Range(e1:h1).Copy

 Sheet2.Range(A2).PasteSpecial xlPasteValues, Transpose:=True
 Application.CutCopyMode = False
 Application.ScreenUpdating = True
 End 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.