Copy one worksheet to another.

hgg_21

New Member
Joined
Apr 23, 2002
Messages
17
Hi,

I need to copy all the data in worksheet into another worksheet.
Can I have some examples how to go about doing it?

Thanks and regards
 
Hi Tom,

thanks for your help! It works now!
U are the best!

But may I know how to delete and create columns on the worksheet?

Thanks and regards
 
Upvote 0

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
'to remove column F
Columns("F:F").Delete Shift:=xlToLeft
'or
Columns(6).Delete Shift:=xlToLeft

'to add a new column to the left of Colum F
Columns("F:F").Insert Shift:=xlToRight
'or
Columns(6).Insert Shift:=xlToRight
 
Upvote 0
Hi,

I encountered one problem. There are alphabets on the top on the columns. I look at the original sheet and I found that when it reaches V, it jumps to AF.
In the new sheet, I can't make it this way? Also can I make the disappeared alphabets appear??

Thanks
 
Upvote 0
I need the exact alphabets becoz some of the cells are formulated using these alphabets. And if these change, the cells values will change.

On 2002-04-25 01:06, hgg_21 wrote:
Hi,

I encountered one problem. There are alphabets on the top on the columns. I look at the original sheet and I found that when it reaches V, it jumps to AF.
In the new sheet, I can't make it this way? Also can I make the disappeared alphabets appear??

Thanks
 
Upvote 0

Forum statistics

Threads
1,213,526
Messages
6,114,122
Members
448,550
Latest member
CAT RG

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top