VB Formula

  • Thread starter Thread starter Guest
  • Start date Start date
One way:

Sheets("Sheet1").UsedRange.Cells.Copy _
Destination:=Sheets("Sheet2").Range("A1")
 
Cheers mate. How to bring all the data that i type in sheet1 to sheet2? Is
that posibble to split the data? For example in sheet1 i enter John 22 male,
its should come under male table in sheet2 and if i type beth 24 female and
it should come under female table in sheet2?

Thank you
 
Back
Top