ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Transferring Data from one sheet to another (https://www.excelbanter.com/excel-discussion-misc-queries/199171-transferring-data-one-sheet-another.html)

Fkerr

Transferring Data from one sheet to another
 
Hi,

I am trying to set up a macro or something that will allow me to transfer
specific data from a master sheet. The master sheet is filled in with lots of
information and I want to pull just a few fields from that row. Is this
possible and can anyone help me try and figure this out?

Pete_UK

Transferring Data from one sheet to another
 
Well, you will have to give a lot more detail if you want some help on
this. What columns do you use in your master sheet? How many rows?
What fields do you want to copy into your summary sheet? What
condition(s) will determine the records to transfer? etc.

Pete

On Aug 18, 11:14*am, Fkerr wrote:
Hi,

I am trying to set up a macro or something that will allow me to transfer
specific data from a master sheet. The master sheet is filled in with lots of
information and I want to pull just a few fields from that row. Is this
possible and can anyone help me try and figure this out?



joel

Transferring Data from one sheet to another
 
Sub CreateNewSht()

Set OldSht = ActiveSheet
Set NewSht = Sheets.Add(after:=Sheets(Sheets.Count))
With OldSht
NewSht.Range("A1").Value = OldSht.Cells(ActiveCell.Row, "H").Value
NewSht.Range("B1").Value = OldSht.Cells(ActiveCell.Row, "E").Value
NewSht.Range("C1").Value = OldSht.Cells(ActiveCell.Row, "L").Value
NewSht.Range("D1").Value = OldSht.Cells(ActiveCell.Row, "P").Value
End With
End Sub



"Fkerr" wrote:

Hi,

I am trying to set up a macro or something that will allow me to transfer
specific data from a master sheet. The master sheet is filled in with lots of
information and I want to pull just a few fields from that row. Is this
possible and can anyone help me try and figure this out?



All times are GMT +1. The time now is 11:59 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com