-
WSamakeler
AskWoody LoungerFebruary 11, 2016 at 12:29 pm in reply to: Excel 2010: Is it possible to save multiple workbooks in a single Excel file (i.e., as 1 workbook) #1551628>> Thinking … maybe I could rename the XLSX suffix to ZIP, unzip it tp obntain the XML code,
>> and then work out how to add an additional workbook, and then re-zip it….?Maybe the general idea of using a zip file is not so crazy. Save the workbooks in a zip file and use VBA to extract and open the workbooks from the zip file. And save them back into a/the zip file. And tell everybody that the zip file is a new type of Excel file…
Now how do I open a zip file from Excel…? Google it …
-
WSamakeler
AskWoody LoungerFebruary 11, 2016 at 11:25 am in reply to: Excel 2010: Is it possible to save multiple workbooks in a single Excel file (i.e., as 1 workbook) #1551568Hi Zeddy,
Thanks for your response.
>> The workspace file doesn’t actually contain the workbooks.
Oooo … I was getting really excited there for a minute. That’s exactly what I want to do: have one file that actually does contain all the workbooks…
>> With regard to your actual issue, if your organisation uses Sharepoint, you can the Excel Web App that allows multiple Users to edit data in a worksheet in the browser at the same time.
We do have a file control system which enforces checkin/checkout which is sufficient for our needs right now.
>> But it seems to me that your best way forward may be to use Excel VBA to control what you require. You could control access to a shared workbook via the User login ID.
Yep – or a radio / select button.
>> Another way would be to have separate workbooks for each Dept, and use VBA to import and/or refresh ‘latest saved data from other Depts’.
This is the thing … the manager goes potty at the thought of having more than one file for all of this; whereas the reality is that each user of three types of users needs a whole separate workbook, i.e., each user needs a table group.
Thinking more … if Excel was only a database app (e.g., Access?), you would only have one table at a time anyway, and not a group of tables. So actually Excel provides a “luxury” (that a database app does not provide), and now I want to extend that “luxury” further.
-
WSamakeler
AskWoody LoungerFebruary 11, 2016 at 11:12 am in reply to: Excel 2010: Is it possible to save multiple workbooks in a single Excel file (i.e., as 1 workbook) #1551565Please everybody , don’t waste your time trying this idea of mine (altering the XML), coz it doesn’t work (of course). A nice dream…
Thinking … maybe I could rename the XLSX suffix to ZIP, unzip it tp obntain the XML code, and then work out how to add an additional workbook, and then re-zip it….?
“Trying too hard to answer your own questions sends you crazy.” Me – 2016
-
WSamakeler
AskWoody LoungerFebruary 11, 2016 at 3:02 am in reply to: Excel 2010: Is it possible to save multiple workbooks in a single Excel file (i.e., as 1 workbook) #1551454Thinking … maybe I could rename the XLSX suffix to ZIP, unzip it tp obntain the XML code, and then work out how to add an additional workbook, and then re-zip it….?
“Trying too hard to answer your own questions sends you crazy.” Me – 2016
-
WSamakeler
AskWoody LoungerFebruary 11, 2016 at 2:57 am in reply to: Excel 2010: Is it possible to save multiple workbooks in a single Excel file (i.e., as 1 workbook) #1551451Thanks for the response, dogknees.
-avi -
WSamakeler
AskWoody LoungerFebruary 11, 2016 at 2:38 am in reply to: Excel 2010: Is it possible to save multiple workbooks in a single Excel file (i.e., as 1 workbook) #1551438Thanks BHarder for the response.
>> (note that for Excel, 1 workbook = 1 file).Yes I am aware. And even more aware now. 🙂
>> However as you suggest, you can do this with the sheets capability.
Each of the two departments needs its own group of sheets (me thinks: group of sheets = workbook).
Well .. .you can’t have everything you want in life …
-avi
-
WSamakeler
AskWoody LoungerFebruary 10, 2016 at 9:58 am in reply to: Excel 2010: Is it possible to save multiple workbooks in a single Excel file (i.e., as 1 workbook) #1551268I suppose I could zip both workbooks files as one zip file, and provide a VBA ‘Open’ operation to extract both files from the zip and open them, and then I have cells of one workbook pointing to cells in the other workbook.
But not ideal.
-
WSamakeler
AskWoody LoungerJune 27, 2014 at 4:10 am in reply to: User feature in Word to let you reuse the same revision number across multiple docs? #1457781Wow! Thanks!
Slapping my head. Wow! I have done this so often myself and I have forgotten.
Not doing such fancy things with Word much these days.
Thanks,
Avraham -
WSamakeler
AskWoody LoungerOctober 24, 2013 at 7:42 pm in reply to: Word VBA: How to make a VBA program wait for a key press on a document #1418961Thanks.
Well I could do that by displaying a message box also, I suppose.I just tried to do it this way – as below – where I create a loop that stops only when the loop control changes state.
I tried to then invoke a macro with a key click (yes -while the first macro is still running, but that did not work. Obviously VBA does not allow that…Public Sub ScheduleContinue()
g_bScheduleContinue = True
End SubFor Each rowCmd In tblCmdInp.Rows
g_bScheduleContinue = False
MsgBox (“Getting ready to wait…”)Do
DoEvents
Loop Until g_bScheduleContinue = TrueMsgBox (“After wait…”)
Next rowCmd
-
WSamakeler
AskWoody LoungerOctober 22, 2013 at 11:26 pm in reply to: Word VBA: How to make a VBA program wait for a key press on a document #1418519Hi Mr. Geek,
Thanks for getting back to me.
>> Knowing why you want to pause the code would be most helpful in providing a good answer to your question.
Well I could want to know just for general knowledge… 🙂
Ok – so the reason I want to do this is as follows.
I have written a type of command interpreter in Word VBA to execute a type of script held in a small Word document. The script comprises a list of simple commands. I run the script my clicking a command button on the Ribbon.
What is important is that my VBA command interpreter has a loop that reads and executes the commands one by one. Once I run the command interpreter, it will “zip” through and execute all the commands in the script very quickly and without stopping. I would like to slow down the execution of the script by adding a ‘wait’ mechanism that, after the execution of each command, waits for the user to press a keyboard key, and then the interpreter will execute one more command, and so on.
Does that help?
TIA
avraham
-
WSamakeler
AskWoody LoungerOctober 20, 2013 at 5:10 pm in reply to: To check if a style is used as a base style for any other style? #1417867Yup – for lack of a better alternative, that’s what I am gonna have to do …
tnx
-avraham
-
WSamakeler
AskWoody LoungerThanks for the answer.
Sorry. I did in fact program it properly. I just posted an incomplete code sample. I programmed the following. But it does not work.
Code:Dim docCmdInp As Document Set docCmdInp = Documents(Word_StyleCmdList.doc) docCmdInp.Activate docCmdInp.Application.Activate
On another forum, in an old thread, somebody suggested doing the following:
Code:Sub MinimizeAll() Dim shell As New shell shell.MinimizeAll End Sub
and then activate your doc window. But my VBA does not recognize shell.
So I would appreciate more help. Any more ideas?
-avraham
-
WSamakeler
AskWoody LoungerSeptember 30, 2013 at 5:31 pm in reply to: Customizing the Ribbon: where can I find a list of all the built-in button icons? #1414818Thanks.
-
WSamakeler
AskWoody LoungerSeptember 24, 2013 at 8:29 am in reply to: Office 2010: Adding ribbon tabs to a file, are they saved in the file? (X posted to Word forum) #1414103Great thanks.
-avraham
-
WSamakeler
AskWoody LoungerShame.
ok – thanks.
-avraham
![]() |
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
-
Finding Microsoft Office 2021 product key
by
Kathy Stevens
2 hours, 15 minutes ago -
Over-the-Top solves it!
by
RetiredGeek
2 hours, 58 minutes ago -
To Susan – Woody Leonhard, the “Lionhearted”
by
Myst
9 hours, 59 minutes ago -
Extracting Data From All Sheets
by
WSJon5
11 hours, 34 minutes ago -
Use wushowhide in Windows 11 24H2?
by
Tex265
11 hours, 42 minutes ago -
Hacktool:Win32/Winring0
by
Marvel Wars
11 hours, 29 minutes ago -
Microsoft Defender as Primary Security Question
by
blueboy714
12 hours, 9 minutes ago -
USB printers might print random text with the January 2025 preview update
by
Alex5723
14 hours, 12 minutes ago -
Google’s 10-year-old Chromecast is busted, but a fix is coming
by
Alex5723
23 hours, 49 minutes ago -
Expand the taskbar?
by
CWBillow
23 hours, 39 minutes ago -
Gregory Forrest “Woody” Leonhard (1951-2025)
by
Susan Bradley
2 hours, 25 minutes ago -
March 2025 updates are out
by
Susan Bradley
51 minutes ago -
Windows 11 Insider Preview build 26120.3380 released to DEV and BETA
by
joep517
1 day, 17 hours ago -
Update Firefox to prevent add-ons issues from root certificate expiration
by
Alex5723
2 days ago -
Latest Firefox requires Password on start up
by
Gordski
1 day, 19 hours ago -
Resolved : AutoCAD 2022 might not open after updating to 24H2
by
Alex5723
2 days, 13 hours ago -
Missing api-ms-win-core-libraryloader-11-2-1.dll
by
IreneLinda
1 day, 12 hours ago -
How Much Daylight have YOU Saved?
by
Nibbled To Death By Ducks
1 day, 15 hours ago -
A brief history of Windows Settings
by
Simon Bisson
1 day, 8 hours ago -
Thunderbolt is not just for monitors
by
Ben Myers
1 day, 7 hours ago -
Password Generators — Your first line of defense
by
Deanna McElveen
1 day, 12 hours ago -
AskWoody at the computer museum
by
Will Fastie
12 hours, 39 minutes ago -
Planning for the unexpected
by
Susan Bradley
1 day, 13 hours ago -
Which printer type is the better one to buy?
by
Bob99
2 days, 15 hours ago -
Upgrading the web server
by
Susan Bradley
2 days, 13 hours ago -
New Windows 11 24H2 Setup – Initial Win Update prevention settings?
by
Tex265
3 days, 8 hours ago -
Creating a Google account
by
DavidofIN
3 days, 7 hours ago -
Undocumented “backdoor” found in Bluetooth chip used by a billion devices
by
Alex5723
3 days, 13 hours ago -
Microsoft Considering AI Models to Replace OpenAI’s in Copilot
by
Alex5723
4 days ago -
AI *emergent misalignment*
by
Alex5723
4 days, 2 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.