Related:
- Copying rows into a different sheet.
- Google sheet right to left - Guide
- Windows network commands cheat sheet - Guide
- Little alchemy cheat sheet - Guide
- Mark sheet in excel - Guide
- How to open excel sheet in notepad++ - Guide
5 responses
mubashir aziz
Posts
190
Registration date
Sunday April 12, 2009
Status
Member
Last seen
February 16, 2010
166
Jun 7, 2009 at 11:58 PM
Jun 7, 2009 at 11:58 PM
actually it can be solved if only you explain that how you have data in other sheet ...... If you are inputting data from master to destination sheet then its not very hard else with some more trick it can be updated there especially when you are inserting new Row ........ don't you have some blank row and can just enter data over three and linked those rows in your destination sheet ......
Yes, I insert a new row into the Master sheet and enter info ont it. I want the exact same thing to happen onto the destination sheet. I want a new row added at the exact same place I added it to the Master sheet adn all of the info transposed there as well.
mubashir aziz
Posts
190
Registration date
Sunday April 12, 2009
Status
Member
Last seen
February 16, 2010
166
Jun 8, 2009 at 10:07 PM
Jun 8, 2009 at 10:07 PM
I'm doubtful about inserting a row in one sheet and auto updation in other sheet. I think it can be thru macro but i'm not master in macros ..... But if you info in same row and columns then you can just give linked of desired cells in other sheet and after inserting some new data in master just dragdown the formula in your destination sheet ....
Dear Friend,
I can understand ur requirement, i also faced the same problem.
It can be solved by creating macro.
To create Macro
-------------------
1.Click the record macro.
(U can set the Short cut key in the option displayed)
2.select the all rows u want to update in destination sheet .
3.Click CTRL+D
4.Stop the Macro
Now u can insert the new row in your master sheet,and go to destination sheet,
and run the macro by shortcut keys .Ur destination sheet will get updated with existing formulae.
I can understand ur requirement, i also faced the same problem.
It can be solved by creating macro.
To create Macro
-------------------
1.Click the record macro.
(U can set the Short cut key in the option displayed)
2.select the all rows u want to update in destination sheet .
3.Click CTRL+D
4.Stop the Macro
Now u can insert the new row in your master sheet,and go to destination sheet,
and run the macro by shortcut keys .Ur destination sheet will get updated with existing formulae.
i am looking to change a macro that I have from a loop to find the last empty row, to inserting a row. My reference cell is C5, so the new row would be at C6. I would like to insert data (=model!S44:AZ44)
here is what I have....that I would like to change
' this macro copies the data by code and pastes it to the history data sheets
'
' 290
'This section captures the date and pastes it into the "history data" sheet.
Sheets("Data Input").Select
Range("AA1").Select
Application.CutCopyMode = False
Selection.Copy
Selection.Insert Shift:=xlDown
Range("D6").Select
Sheets("290").Select
Range("c5").Select
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
'this section copies the model data and goes to the appropriate sheet to paste
Sheets("model").Select
Range("S44:Az44").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("290").Select
Range("D5").Select
'this section finds the next open row and pastes the data
ActiveCell.Offset(1, 0).Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
here is what I have....that I would like to change
' this macro copies the data by code and pastes it to the history data sheets
'
' 290
'This section captures the date and pastes it into the "history data" sheet.
Sheets("Data Input").Select
Range("AA1").Select
Application.CutCopyMode = False
Selection.Copy
Selection.Insert Shift:=xlDown
Range("D6").Select
Sheets("290").Select
Range("c5").Select
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
'this section copies the model data and goes to the appropriate sheet to paste
Sheets("model").Select
Range("S44:Az44").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("290").Select
Range("D5").Select
'this section finds the next open row and pastes the data
ActiveCell.Offset(1, 0).Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
Didn't find the answer you are looking for?
Ask a question
I am looking to change a macro that I have from a loop to find the last empty row, to inserting a new at the top row. My reference cell is C5, so the new row would be at C6. I would like to insert data (=model!S44:AZ44)
here is what I have....that I would like to change
' this macro copies the data by code and pastes it to the history data sheets
'
' 290
'This section captures the date and pastes it into the "history data" sheet.
Sheets("Data Input").Select
Range("AA1").Select
Application.CutCopyMode = False
Selection.Copy
Selection.Insert Shift:=xlDown
Range("D6").Select
Sheets("290").Select
Range("c5").Select
ActiveCell.Offset(1, 0).Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
'this section copies the model data and goes to the appropriate sheet to paste
Sheets("model").Select
Range("S44:Az44").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("290").Select
Range("D5").Select
'this section finds the next open row and pastes the data
ActiveCell.Offset(1, 0).Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
here is what I have....that I would like to change
' this macro copies the data by code and pastes it to the history data sheets
'
' 290
'This section captures the date and pastes it into the "history data" sheet.
Sheets("Data Input").Select
Range("AA1").Select
Application.CutCopyMode = False
Selection.Copy
Selection.Insert Shift:=xlDown
Range("D6").Select
Sheets("290").Select
Range("c5").Select
ActiveCell.Offset(1, 0).Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
'this section copies the model data and goes to the appropriate sheet to paste
Sheets("model").Select
Range("S44:Az44").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("290").Select
Range("D5").Select
'this section finds the next open row and pastes the data
ActiveCell.Offset(1, 0).Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False