Extracting data from 2 columns and putting the data in one cell in another worksheet. Those 2 collums come from 12 worksheets.

PMRetired2012

Board Regular
Joined
Aug 6, 2019
Messages
123
What i want to do is:
1. In column D over 12 worksheets i have the words or description of : resale, Labor, utility. depending on what is said the items was.
2. In column E I have a dollar amount listed in those 12 worksheets.
3. There are 15 worksheets in this workbook named ( Jan-Dec, Year to date, option page, New equip repairs)
4. What i want to do is with this information i gave you is: I want to search thru column D of all 12 worksheets and extract the word resale and in column E i want to extract the dollar amount that is connected with the word resale.
5. Then i want to to add all the amounts that are associated with resale over all 12 months and put them in A45 cell on the worksheet named "Year to date".
The problem is i don't know if i use a VLOOKUP formula or i use some sort of macro. I'm just kind of lost on this one.

Dennis
 
Peter,
I get a error message of: Run time error 9, subscript out of range....
the line of code it highlights is: With Sheets(MonthName(j, True))
1. do i have to name the months (Jan-Dec) where it says MonthName?
2. i corrected the year to date sheet problem. Mine says YTD INFO
3. when we get this into a module does it run automaticaly or do i have to make a control button or will it just happen?
thanks Peter
I also forgot to tell you i have other page tab names: OPTIONS PAGE, NEW EQUIP REPAIRS
 
Upvote 0

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
I get a error message of: Run time error 9, subscript out of range....
the line of code it highlights is: With Sheets(MonthName(j, True))
1. do i have to name the months (Jan-Dec) where it says MonthName?
Thanks. That does indicate a problem with the sheet names. The code is expecting to find sheets named "Jan", "Feb", "Mar" etc to "Dec"
When you get the error, click Debug then hover over the variable j in that line of code. A pop-up should show you the value of j at that point. If j was say 5 then the problem sheet will be the 'May' sheet. Check for any spaces before or after 'May' on the tab name. For instance, here I have gone to rename the May sheet and you can then see a space after the name

1613786187740.png
 
Upvote 0
when we get this into a module does it run automaticaly or do i have to make a control button or will it just happen?
No, it does not run automatically. You could make a button or run it as I described in post #7 steps 5 and 6
 
Upvote 0
Thanks. That does indicate a problem with the sheet names. The code is expecting to find sheets named "Jan", "Feb", "Mar" etc to "Dec"
When you get the error, click Debug then hover over the variable j in that line of code. A pop-up should show you the value of j at that point. If j was say 5 then the problem sheet will be the 'May' sheet. Check for any spaces before or after 'May' on the tab name. For instance, here I have gone to rename the May sheet and you can then see a space after the name

View attachment 32622
I have the months spelled out like January, Febuary and ect to December does that matter?
 
Upvote 0
Upvote 0
It sure does. You have never said that and repeatedly referred to them like this. ;)




Change the line of code to
Rich (BB code):
With Sheets(MonthName(j, True))
With Sheets(MonthName(j))
Peter
I still get a error message of: Run time error 9, subscript out of range....
the line of code it highlights is: With Sheets(MonthName(j))
1. I corrected the year to date sheet problem. Mine says YTD INFO
2. I hover j now and it says =2
There is someting still not right about the code. Have you got any more ideas?
thanks Peter
 
Upvote 0
: Run time error 9, subscript out of range....
the line of code it highlights is: With Sheets(MonthName(j))
1. I corrected the year to date sheet problem. Mine says YTD INFO
2. I hover j now and it says =2
There is someting still not right about the code. Have you got any more ideas?
Yes, that indicates you don't have a sheet called "February". Check again the spelling of that tab name, including that it does not have any leading or trailing spaces.
 
Upvote 0
Yes, that indicates you don't have a sheet called "February". Check again the spelling of that tab name, including that it does not have any leading or trailing spaces.
WOW Peter it worked thanks alot.
Now lets see if we can take it one step farther.
1. Do you think we could make that code work as im entering the information into each monthly worksheet to show up in the cell A45 on the YTD INFO page as im enter the information without making a button to make that happen?

thanks
 
Upvote 0

Forum statistics

Threads
1,214,998
Messages
6,122,638
Members
449,093
Latest member
Ahmad123098

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top