How to supplement this macro?
Closed
DG83
Posts
38
Registration date
Monday 2 January 2012
Status
Member
Last seen
21 April 2018
-
29 Sep 2012 à 01:01
Dg83 - 2 Oct 2012 à 04:16
Dg83 - 2 Oct 2012 à 04:16
Related:
- How to supplement this macro?
- Excel online macro - Guide
- Excel run macro on open - Guide
- How to copy macro from one workbook to another - Guide
- Macro for number to words in excel - Guide
- Convert multiple rows to columns in excel macro - Guide
2 responses
venkat1926
Posts
1863
Registration date
Sunday 14 June 2009
Status
Contributor
Last seen
7 August 2021
811
29 Sep 2012 à 05:00
29 Sep 2012 à 05:00
must be possible to use wildcard like
"*jenk*"
do an experiment
type jenkins in A1
in immediate window type
?cells.Find (what:="*jenk*").Address
and hit enter key you get A1
will this help you to modify the macro?
"*jenk*"
do an experiment
type jenkins in A1
in immediate window type
?cells.Find (what:="*jenk*").Address
and hit enter key you get A1
will this help you to modify the macro?
venkat1926
Posts
1863
Registration date
Sunday 14 June 2009
Status
Contributor
Last seen
7 August 2021
811
30 Sep 2012 à 21:35
30 Sep 2012 à 21:35
probably you do not know what is "immediate" window . this is the window to test any code statement while writing the macro in themodule.
open vb editor and hit control+R.you will see the list of all open files. highlight your relevant file and click insert(menu in vb editor)-module
a window opens (on the right side) which is a module
now click view(menu in vb editor)-immediate window ., a small window opens below the module window. that is immediate window
now follow instructions in the previous message. and if you are satsified you can use this in your macro
if you do not want a code then Jenkinson in A1
control+F
click option uncheck "match entire cell contents" if it is checked otherwise leave it
click find next. the cursor will got to A1
use these ideas to write a macro
immediate window is useful window to check you code statement and tweak or write macros
open vb editor and hit control+R.you will see the list of all open files. highlight your relevant file and click insert(menu in vb editor)-module
a window opens (on the right side) which is a module
now click view(menu in vb editor)-immediate window ., a small window opens below the module window. that is immediate window
now follow instructions in the previous message. and if you are satsified you can use this in your macro
if you do not want a code then Jenkinson in A1
control+F
click option uncheck "match entire cell contents" if it is checked otherwise leave it
click find next. the cursor will got to A1
use these ideas to write a macro
immediate window is useful window to check you code statement and tweak or write macros
30 Sep 2012 à 09:52