Macros in Excel so it copies onto next row
Closed
Hello,
I'm trying to copy values from one sheet to the other in excel via use of a macro. The data is in rows, and is there anyway that I can program the macro so that it copies the data onto the next row whenever the row above it is occupied. (As you can see I'm new to Visual Basic Code)
Thanks in advance!!!
infinityx8
I'm trying to copy values from one sheet to the other in excel via use of a macro. The data is in rows, and is there anyway that I can program the macro so that it copies the data onto the next row whenever the row above it is occupied. (As you can see I'm new to Visual Basic Code)
Thanks in advance!!!
infinityx8
Related:
- Macros in Excel so it copies onto next row
- Macros in excel download free - Download - Spreadsheets
- Saints row 2 cheats - Guide
- Gif in excel - Guide
- Number to words in excel - Guide
- Excel mod apk for pc - Download - Spreadsheets
4 responses
Range("A1").Select
Selection.End(xlDown).Select
i think i might be trying to do a similar task. this is what i tried, if it doesnt help, please disregard as i too am new to vb.
Selection.End(xlDown).Select
i think i might be trying to do a similar task. this is what i tried, if it doesnt help, please disregard as i too am new to vb.
nazish
Posts
1
Registration date
Wednesday October 28, 2009
Status
Member
Last seen
November 4, 2009
9
Nov 4, 2009 at 01:47 AM
Nov 4, 2009 at 01:47 AM
i want that when i copy the specified rows it paste in colums but after specified colum it paste to next row till spcified colum and so on.
1. Copy the cells from sheet 1.
2. Select the top cell of the first column in sheet 2
3. Open Find & Replace (Ctrl + F)
4. Open the options in Find & Replace and change "search by rows" to "search by columns"
5. Leave the value you're searching for blank.
6. Click "Find Next"
7. Paste special (values only)
Only works if you have no other blank cells above the cell you want to paste into.
2. Select the top cell of the first column in sheet 2
3. Open Find & Replace (Ctrl + F)
4. Open the options in Find & Replace and change "search by rows" to "search by columns"
5. Leave the value you're searching for blank.
6. Click "Find Next"
7. Paste special (values only)
Only works if you have no other blank cells above the cell you want to paste into.