-
WSduthiet
AskWoody LoungerMarch 31, 2017 at 5:44 pm in reply to: Summarizing data from multiple spreadsheets onto one #1594276Dear ab2537:
Attached is a solution based on Hlookup formula. Right now it picks up rows 3 – 75 on both worksheets. But can be modified to include more rows if needed. I also put in a special ID formula to better track where the data is coming from.
This approach is flexible and would allow you to added more columns to the Master based on the Columns in the Data sheets.
Hope this helps
DuthieT
-
WSduthiet
AskWoody LoungerMarch 22, 2017 at 2:57 pm in reply to: Copy rows from one sheet to another using certain criteria #1594068Dear AceWak:
If I completely understand what you are trying to do see the attached workbook.
In the Worksheet “U093K007” using the Endroit Column and String Formulas I extracted the key words found in the Columns of the Plan Worksheet
Lastly by using Advance Filters the “NewData” worksheet should display the required items to be billed.
Please read and follow the simple steps in the Instruction Worksheet
TIP – If desired you can record Macros for each Plan then run the Macro and the sheet will automatically update. I skipped this step since you appeared to want to avoid VBA.
Good Luck
DuthieT -
WSduthiet
AskWoody LoungerKeenplanner:
I found this on the WEB. Perhaps it will help. I have not tried to use the below solution.
Regards,
DuthietA script that performs this function is available through the Actions Exchange at adobeusers.com:
http://acrobatusers.com/actions-exchange/create-comment-summaryDownload the pdf from the link above, which includes instructions on how to use the Create Comment Summary Action. Note that you must dowload and import the Create Comment Summary.sequ file attached to the pdf. This link contains a video tutorial.
This is a great tool, but could be improved by grouping actions related to the same comment on single rows, rather than create a new row for each action. I will create a new post to inquire about how this functionality might be achieved.
-
WSduthiet
AskWoody Loungerrcough:
Welcome to the lounge!!! Retired Geek has given you a great way.
However, you can do this without a macro by using filters.
First Select the Data Ribbon or in Excel 2000 the Filter Option
Then on your sheet highlight the rows in col AG you want to work on. Make sure the first items in your highlighted rows has some data (ie not blank)
Now Click the Filter on the Data Tab – Excel will create a Filter List with a drop down. Click on the drop down and deselect the Archive Element. Close this tab and those items are hidden. (filtered out). Any time you want to see all the rows just click the drop down filter and select the archive element.
Gotta love Excel Filters
DuthieT
-
WSduthiet
AskWoody LoungerJanuary 16, 2017 at 11:09 am in reply to: EXCEL.EXE*32 remains running after closing Excel 2013 every other time #1589000Did this always occur? Or did it begin after updates were installed?
You might try uninstalling and reinstalling Excel and see if this solves the issue.
-
WSduthiet
AskWoody LoungerJanuary 11, 2017 at 2:43 pm in reply to: Keying in time without using colon between hours and minutes #1588479Dear All:
Science says time is infinite, but in Excel there are only 1,440 minutes in a day. Based on that principal see the attachedI am sure others can further simplify this even more, but I do know this one works.
If you need to copy the results remember to the Copy Values rather than the formulas.
Hope this helps
DuthieT
-
WSduthiet
AskWoody LoungerRobert
OK the below macro will do 4 Cells so in Cell B50 put the background Colour , B51 the next background colour, B52 the next background colour, and lastly in B53 the final background color. Results will shown in cells C50 to C53
Regards,
Sub Color()
‘
‘ Color Macro
‘
Dim R As Long
Dim Z As Long
‘
R = 0
ActiveSheet.Range(“B50”).Select
Z = Selection.Interior.Color
‘
ActiveSheet.Range(“MyGroup”).Select
‘
For Each MCell In Selection
If MCell.Interior.Color = Z Then
R = R + MCell.Value
End If
Next
ActiveSheet.Range(“C50”).Activate
ActiveCell.Value = R
R = 0
ActiveSheet.Range(“B51”).Select
Z = Selection.Interior.Color
‘
ActiveSheet.Range(“MyGroup”).Select
‘
For Each MCell In Selection
If MCell.Interior.Color = Z Then
R = R + MCell.Value
End If
Next
ActiveSheet.Range(“C51”).Activate
ActiveCell.Value = R
R = 0
ActiveSheet.Range(“B52”).Select
Z = Selection.Interior.Color
‘
ActiveSheet.Range(“MyGroup”).Select
‘
For Each MCell In Selection
If MCell.Interior.Color = Z Then
R = R + MCell.Value
End If
Next
ActiveSheet.Range(“C52”).Activate
ActiveCell.Value = R
R = 0
ActiveSheet.Range(“B53”).Select
Z = Selection.Interior.Color
‘
ActiveSheet.Range(“MyGroup”).Select
‘
For Each MCell In Selection
If MCell.Interior.Color = Z Then
R = R + MCell.Value
End If
Next
ActiveSheet.Range(“C53”).Activate
ActiveCell.Value = R
R = 0
‘
End Sub -
WSduthiet
AskWoody LoungerRobert:
This worked for me.
1. Set a Range Name that covers the Pivot Table Data. In my Code that range is “MyGroup”
2. In a blank cell of the Excel Sheet set the background colour to equal the colour used in the PivotTable to highlight. In my Example it was Cell “B50”
3. Run the below VBA Code. In the below example it puts the total in Cell “C50”VBA Code
Sub Macro3()
‘
‘ Macro3 MacroDim R As Long
Dim Z As Long
‘
R = 0
ActiveSheet.Range(“B50”).Select
Z = Selection.Interior.Color
‘
ActiveSheet.Range(“MyGroup”).Select
‘
For Each mCell In Selection
If mCell.Interior.Color = Z Then
R = R + mCell.Value
End If
Next
ActiveSheet.Range(“C50”).Activate
ActiveCell.Value = REnd Sub
Hope this helps.
DuthieT
-
WSduthiet
AskWoody LoungerOctober 21, 2016 at 12:54 pm in reply to: Deleting potentially lots of rows based on a cell = 0 #1582247If Column B has no text or alpha numeric entries then you could try the following.
In the worksheet in any empty column (Sale Col “D”) put in D1 the formula =10/B1. Copy down to D10000.
Open VBA and put in the following Code.
Code:Sub RemoveIt () Range(D1:D10000).Select Selection.SpecialCells(xlCellTypeFormulas, 16).Select Selection.EntireRow.Detete End Sub
Make excel activce run the Macro and it should delete the desired rows rather quickly.
Hope this helps.
DuthieT
-
WSduthiet
AskWoody LoungerAbhi:
Maudibe has provided an excellent solution. However if you are still interested in “Connections” A bit more detail on getting fully connected.
Step One:
Assuming that the data can be converted to a flat Table please make sure that the first row of the needed worksheets in the closed file have each Column Name in the first row.
Step Two:
In an Open workbook on the Data Ribbon select “Connections” Click Add and create a connection to the closed workbook to the first worksheet.
Next repeat the above but this time create a connection to the second worksheet.Step Three
On the Data Ribbon Select the “Existing Connections” Icon. A dialog box will open showing all of the current connections available. Find the connection for the first worksheet in the closed workbook. “Double Click” on the item. A new dialog box will open, Check you want a table and check you want it in a new worksheet. This should created a new worksheet with the data. Repeat for the Second Worksheet. You will now have the same data as in the close workbook. But if anyone happens to open the Closed Workbook and changes some data you can refresh you connection and the new information will be connected to your open workbook.Lastly If all the data is imported you will have to filter the data in the Open Workbook.
Hope this helps.
TD
-
WSduthiet
AskWoody LoungerAbi:
As an alternative you might try using the Data Connection function. On the Data Ribbon find and select the “Connections” Icon. In the Dialog box Select “Add” and folllow the prompts. Excel should create a new worksheet in the Open Book with the data you need and you would change your formulas to reference this sheet rather than the closed workbook.
Regards.
TD
-
WSduthiet
AskWoody LoungerKweaver
The solution I propose does not use a Macro but its fast and should meet your needs.
Attached in the Workbook “Input2.xlsx” It has been set up to be the master Workbook.
What you would do is first import the text file into an Excel workbook and change the Worksheet name to what you want it to be.
Next Open the Input2.xlsx workbook and copy the renamed worksheet into the master Workbook
Then on the “Revised Data” Worksheet in Cell H3 type in the exact name of the imported worksheet.
You will now have the data revised as you requested. If you need it be “Flat” just copy and paste special “Values”Hope this helps.
TD
-
WSduthiet
AskWoody LoungerDear Bhushanvshah:
Does the attached help? It uses 3 pivot tables to show results. By Clicking the Text Box “Update Tables” it will refresh all three pivot tables and give the results in your request.
Currently the Pivot Table is set to pick up 5,000 lines of data. Of course if more lines are needed you will need to change the data source via the Pivot Table Ribbon. I also included a reference to the row number where the data is being pulled from.
Regards,
Tom D
-
WSduthiet
AskWoody LoungerDear Bhushanvshah:
Attached is a solution. It uses a new formula in Col L and then advanced Data Filter.
Each time you populate the sheet you will need to go to the “Data Ribbon” and select Filter “Advanced” make sure to select copy to a different location and press OK. Each time you will get the results.
The first worksheet works for Excel 10 and above, the second worksheet will work with lower versions.
Lastly, the criteria for returning information had a conflict. Your first Criteria was all stocks that equal High which by definition would pick up stocks both above and below 75 therefore the >75 AND High does not pick up new items. Also the information provided were outside the criteria so the log would result in no finds so I added more data that meet the criteria.
Hope this helps.
TomD
-
WSduthiet
AskWoody LoungerDear MNN:
Does the below help. These notes were made when I put together dependent drop down.
Create Multiple Drop Down Lists Based On Prior Selection
The real Trick to getting this to work is the excel function INDIRECT()
Example:
Company has 4 Regions – Americas Europe Asia Latin America
Each Region has between 10 to 60 Countries
Each Country has between 1 to 10 Legal EntitiesYou want the user to first select a Region then Country, and lastly the Legal Entity
Region Country Company
Range 1 Range 2 Range 3
Austria Company 1
x Company 2
x Company 3
x Company 4
x
x
x
VenezuelaFor Range 1 – Create a Data Validation rule using the “Data” Ribbon – Data Tools – Data Validation
Under Settings for “Source” Put in “=Regions” where Regions equals a range name with the four regions
For Range 2 – Create a Data Validation rule using the “Data” Ribbon – Data Tools – Data Validation
Under Settings for “Source” Put in “=INDIRECT(Prior Selection Cell)” where prior selection cell equals the exact cell where the previous region name was selected
There must be a predefined range name that exactly matches any Region a user may select. This range will including all the
Countries for a particular Region (Canada, Mexico, Bermuda, Puerto Rico, etc.)For Range 3 – Create a Data Validation rule using the “Data” Ribbon – Data Tools – Data Validation
Under Settings for “Source” Put in “=INDIRECT(Prior Selection Cell)” where prior selection cell equals the exact cell where the previous Country name was selected
There must be a predefined range name that exactly matches any Country a user may select. This range will including all the Legal Entities
Located in a Country such as “Austria” Range would include (Company 1, Company 2, Company 3, Company 4)Regards,
Tom D
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Documents, Pictures, Desktop on OneDrive in Windows 11
by
ThePhoenix
20 minutes ago -
End of 10
by
Alex5723
3 hours, 1 minute ago -
End Of 10 : Move to Linux
by
Alex5723
3 hours, 30 minutes ago -
Single account cannot access printer’s automatic duplex functionality
by
Bruce
55 minutes ago -
test post
by
gtd12345
9 hours, 1 minute ago -
Privacy and the Real ID
by
Susan Bradley
50 minutes ago -
MS-DEFCON 2: Deferring that upgrade
by
Susan Bradley
1 hour, 16 minutes ago -
Cant log on to oldergeeks.Com
by
WSJonharnew
13 hours, 23 minutes ago -
Upgrading from Win 10
by
WSjcgc50
47 minutes ago -
USB webcam / microphone missing after KB5050009 update
by
WSlloydkuhnle
8 hours, 29 minutes ago -
TeleMessage, a modified Signal clone used by US government has been hacked
by
Alex5723
1 day, 5 hours ago -
The story of Windows Longhorn
by
Cybertooth
16 hours, 47 minutes ago -
Red x next to folder on OneDrive iPadOS
by
dmt_3904
1 day, 7 hours ago -
Are manuals extinct?
by
Susan Bradley
3 hours, 16 minutes ago -
Canonical ditching Sudo for Rust Sudo -rs starting with Ubuntu
by
Alex5723
1 day, 16 hours ago -
Network Issue
by
Casey H
1 day, 3 hours ago -
Fedora Linux is now an official WSL distro
by
Alex5723
2 days, 4 hours ago -
May 2025 Office non-Security updates
by
PKCano
2 days, 4 hours ago -
Windows 10 filehistory including onedrive folder
by
Steve Bondy
2 days, 6 hours ago -
pages print on restart (Win 11 23H2)
by
cyraxote
1 day, 7 hours ago -
Windows 11 Insider Preview build 26200.5581 released to DEV
by
joep517
2 days, 8 hours ago -
Windows 11 Insider Preview build 26120.3950 (24H2) released to BETA
by
joep517
2 days, 8 hours ago -
Proton to drop prices after ruling against “Apple tax”
by
Cybertooth
2 days, 16 hours ago -
24H2 Installer – don’t see Option for non destructive install
by
JP
1 day, 8 hours ago -
Asking Again here (New User and Fast change only backups)
by
thymej
3 days, 3 hours ago -
How much I spent on the Mac mini
by
Will Fastie
10 hours, 50 minutes ago -
How to get rid of Copilot in Microsoft 365
by
Lance Whitney
1 day, 6 hours ago -
Spring cleanup — 2025
by
Deanna McElveen
3 days, 9 hours ago -
Setting up Windows 11
by
Susan Bradley
2 days, 4 hours ago -
VLC Introduces Cutting-Edge AI Subtitling and Translation Capabilities
by
Alex5723
3 days, 4 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.