Find and replace with excel macros
Closed
Rachel
-
Mar 28, 2011 at 05:36 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Mar 31, 2011 at 11:11 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Mar 31, 2011 at 11:11 AM
Related:
- Find and replace with excel macros
- Macros in excel download free - Download - Spreadsheets
- Excel marksheet - Guide
- Number to words in excel - Guide
- Excel apk for pc - Download - Spreadsheets
- Kernel for excel - Download - Backup and recovery
1 response
RWomanizer
Posts
365
Registration date
Monday February 7, 2011
Status
Contributor
Last seen
September 30, 2013
120
Mar 29, 2011 at 01:37 AM
Mar 29, 2011 at 01:37 AM
Hi Rachel,
try to record a macro to see if you search a value in give cell and copy the row in which result found, what code is generated.
try to record a macro to see if you search a value in give cell and copy the row in which result found, what code is generated.
Mar 29, 2011 at 02:31 PM
ActiveWindow.LargeScroll ToRight:=-1
Sheets("Input Sheet").Select
Range("B8").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Calculation").Select
Range("C22").Select
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlToRight)).Select
Application.CutCopyMode = False
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Mar 31, 2011 at 11:11 AM
'you scolled the window
ActiveWindow.LargeScroll ToRight:=-1
' you selected this shee
Sheets("Input Sheet").Select
'you selected this cell
Range("B8").Select
'internal excel prep for copy
Application.CutCopyMode = False
'actual copy
Selection.Copy
'this sheet is selected
Sheets("Calculation").Select
'this cell on calc sheet is select
Range("C22").Select
'from last selected cell, till the last used cell on rights, the cells are selected
Range(Selection, Selection.End(xlToRight)).Select
'from last selected range, till the last used cell on rights, the cells are selected
Range(Selection, Selection.End(xlToRight)).Select
'internal excel prep for copy
Application.CutCopyMode = False
'actual copy
Selection.Copy
'actual paste as values
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
How ever, at the best this is only a template. I think this appoach would be a tad better