I'm completely new to macros and myExtra, but I just started this temp job and I'm sure it can be automated.
I type in a UPC into myExtra and a bunch of columns and rows come back with price data.
A column on the left has a price code and it corresponds with a certain type of store. The actual price of the item at that store is in the same row but further to the right.
ex.
UPC 0 245768 39348
LEVEl LVL KEY M Sell price
950 000 404 5.99
850 000 111 6.99
850 000 112 5.98
950 000 454 4.98
So I want all the "sell price" values that are at LEVEL 850 and they need to be pasted into an ecxel file with spaces that correspond to the "LVL KEY" value (LVL KEY 111 has a specific spot in the excel file along with 112, 113...etc).
I programmed in java a long time ago and it seems like something like this would work, but I don't know a whole lot about how to program macros for myextra. I'm just wondering if this is the best strategy and if this will work, and some strategies I should use....
obviously this is just pseudo java. gimme a break it was like 6 years ago.
int UPC = (input UPC);
int i = 0;
while (locationofUPC = UPC) {
//if the LEVEL on that line is 850
if (line[i, sell price] == 850) {
copy sell price to excel file spot line[i, LVL KEY];
//copy the sell price to the LVL KEY spot in excel
}
i++;
}
This also goes on for multiple screens - I don't know if I have to deal with that in the macro...
Thanks for any help
I type in a UPC into myExtra and a bunch of columns and rows come back with price data.
A column on the left has a price code and it corresponds with a certain type of store. The actual price of the item at that store is in the same row but further to the right.
ex.
UPC 0 245768 39348
LEVEl LVL KEY M Sell price
950 000 404 5.99
850 000 111 6.99
850 000 112 5.98
950 000 454 4.98
So I want all the "sell price" values that are at LEVEL 850 and they need to be pasted into an ecxel file with spaces that correspond to the "LVL KEY" value (LVL KEY 111 has a specific spot in the excel file along with 112, 113...etc).
I programmed in java a long time ago and it seems like something like this would work, but I don't know a whole lot about how to program macros for myextra. I'm just wondering if this is the best strategy and if this will work, and some strategies I should use....
obviously this is just pseudo java. gimme a break it was like 6 years ago.
int UPC = (input UPC);
int i = 0;
while (locationofUPC = UPC) {
//if the LEVEL on that line is 850
if (line[i, sell price] == 850) {
copy sell price to excel file spot line[i, LVL KEY];
//copy the sell price to the LVL KEY spot in excel
}
i++;
}
This also goes on for multiple screens - I don't know if I have to deal with that in the macro...
Thanks for any help