Hope it helps
2018-03-26 12:21:13 UTC
However, can MACRO handle these tasks or is it just better to sieve these information personally (im looking at 200 over word pages)
MICROSOFT WORD MACRO:
(1) How do I find a string of word and return a value associated with a word?
E.g. Number of Chickens: 17
Number of Eggs: 13
Farm: Arizona
(I need 2 variables, CHICKEN & FARM)
(2) I need to fill up a tables with 2 variables, CHICKEN & FARM. However, the FARM(X) must correspond
to a correct value of CHICKEN(Y). Which MACRO function should I use and define?
E.g.
X1= Arizona, Y1= 17
X2= New York, Y2=15
EXCEL
(3) After porting those 2 variables into excel, I need to compare with another sheet with variables X and Y.
In this case, Sheet 2 is missing New york.
How do I ask excel to run a macro to loop every cell to check whether New York is in Sheet 2?
E.g.
Sheet 1 (data from WORD document)
Cell A1= Arizona, cell B1=17
Cell A2= New york, cell B2=15
Sheet 2 (my own reference sheet)
Cell A1= Arizona, cell B1=17
Cell A2= Texas, cell B1=34
(4) How do I run another macro to CHECK whether A1=Arizona AGREES with B1=17 VALUE in both
sheets?
Thanks in advance!!