-
WSduthiet
AskWoody LoungerThanks all for checking on this matter.
I still have the problem and so does all the PC’s in my work area.. I just opened the attachment and the picture gets fragmented.
So it appears that I may have some type of hardware set up issue.Regards,
TD
-
WSduthiet
AskWoody LoungerThanks all for checking on this matter.
I still have the problem and so does all the PC’s in my work area.. I just opened the attachment and the picture gets fragmented.
So it appears that I may have some type of hardware set up issue.Regards,
TD
-
WSduthiet
AskWoody LoungerApril 19, 2004 at 3:33 pm in reply to: VBA Programming with Excel Reference Book (2000 9.0.3821 SR-1) #816871A book I though was very good was Learn Microsoft Excel 2000 VBA Programming by Julitta Korol published by Wordware Publishing Inc. http:http://www.wordware.com.
I very much liked the way it was organized to allow the reader on the fly to quickly find what is needed. It starts from the very basic and goes to the more complex.
If you just want to get the work done buy it. If you want to know everything about Excel VBA you will need a different book. Good luck.TD
-
WSduthiet
AskWoody LoungerApril 19, 2004 at 3:33 pm in reply to: VBA Programming with Excel Reference Book (2000 9.0.3821 SR-1) #816872A book I though was very good was Learn Microsoft Excel 2000 VBA Programming by Julitta Korol published by Wordware Publishing Inc. http:http://www.wordware.com.
I very much liked the way it was organized to allow the reader on the fly to quickly find what is needed. It starts from the very basic and goes to the more complex.
If you just want to get the work done buy it. If you want to know everything about Excel VBA you will need a different book. Good luck.TD
-
WSduthiet
AskWoody LoungerAndrew:
Thanks for that suggestion, I was thinking along that line. Using instance 1 in VBA could be helpful.
TD
-
WSduthiet
AskWoody LoungerAndrew:
Thanks for that suggestion, I was thinking along that line. Using instance 1 in VBA could be helpful.
TD
-
WSduthiet
AskWoody LoungerDear Novice:
Since you already know how to link data you should consider yourself a proficient user of Excel that is smart enough to come to the lounge to get answers.
The information that you provided is rather general, but I will give you a solution I have used on several occassions.
What I have done in the past is to find a nice secluded place on the Master Schedule Sheet and set up what I will call a data table. Here you will put all the needed data in the rows and the vessels in the columns. Of course you will use links to pull the data from each of the vessel sheets to this secluded area. MAKE SURE THE ROWS ARE IN ASCENDING SORT ORDER.
This will do two great things. First it will provide a place where you can monitor that the data is flowing correctly from each sheet. Plus you have now created a database in your master sheet which Excel just loves to slice and dice data.
Now comes the easy part. In the area of the Master Schedule that you want to print use the Vlookup function in Excel
to run down to grab the data based on what Vessel you want.This may seem complex so I have attached an excel example that should allow you to better understand how this technique works.
Hope this will help you.
Regards,
TD
-
WSduthiet
AskWoody LoungerDear Novice:
Since you already know how to link data you should consider yourself a proficient user of Excel that is smart enough to come to the lounge to get answers.
The information that you provided is rather general, but I will give you a solution I have used on several occassions.
What I have done in the past is to find a nice secluded place on the Master Schedule Sheet and set up what I will call a data table. Here you will put all the needed data in the rows and the vessels in the columns. Of course you will use links to pull the data from each of the vessel sheets to this secluded area. MAKE SURE THE ROWS ARE IN ASCENDING SORT ORDER.
This will do two great things. First it will provide a place where you can monitor that the data is flowing correctly from each sheet. Plus you have now created a database in your master sheet which Excel just loves to slice and dice data.
Now comes the easy part. In the area of the Master Schedule that you want to print use the Vlookup function in Excel
to run down to grab the data based on what Vessel you want.This may seem complex so I have attached an excel example that should allow you to better understand how this technique works.
Hope this will help you.
Regards,
TD
-
WSduthiet
AskWoody LoungerThe CELLS function in Excel returns information about, formatting, location, or contents of a specific cell or the upper-left cell in a referenced range. It can be a very useful function.
In the formula provided the info type requested is “Type” for cell A2. This returns the following values. “b” for Blank, “l” for labels and “v” for values. Since you only wanted to deal with values that are non zero the nested AND statement requires that the cell be a value AND that value not be zero for the formula to perform division; in all other cases (“b”,”l”, or the value zero) the formula returns -0- (zero).
Regards,
TD
-
WSduthiet
AskWoody LoungerThe CELLS function in Excel returns information about, formatting, location, or contents of a specific cell or the upper-left cell in a referenced range. It can be a very useful function.
In the formula provided the info type requested is “Type” for cell A2. This returns the following values. “b” for Blank, “l” for labels and “v” for values. Since you only wanted to deal with values that are non zero the nested AND statement requires that the cell be a value AND that value not be zero for the formula to perform division; in all other cases (“b”,”l”, or the value zero) the formula returns -0- (zero).
Regards,
TD
-
WSduthiet
AskWoody LoungerAssuming that you are working with cells A1 and A2 with A2 as denominator try the below formula
=IF(AND(CELL(“Type”,A2)=”v”,A20),A1/A2,0)
Regards,
TD -
WSduthiet
AskWoody LoungerAssuming that you are working with cells A1 and A2 with A2 as denominator try the below formula
=IF(AND(CELL(“Type”,A2)=”v”,A20),A1/A2,0)
Regards,
TD -
WSduthiet
AskWoody LoungerTal:
Attached to this response is a workbook containing 2 Macros for your use.
The first Macro OldTabs will create a new Worksheet called “Tab Control”.
In Column B it will list the current names of each TAB in a workbook
In Column C the Macro will put the same names as in Column B
The user will then use Column C to type in the new desired TAB names. It is very important that Column C has a TAB name
for each worksheet in the workbook or the Macro will not function properly. If you don’t want to change a TAB leave the entry that is already in Column C.
Then run the second Macro NewTabs. This Macro will replace the TAB names with your entries in Column C and Delete Tab Control.Since you are new to Macro’s I suggest the following to use the Macros.
1. Open the attached workbook and save it on your local drive.
2. When needed, open the attached workbook either open the workbook with the tab names you want to change or make it active.
3. Make sure the workbook with the tab names is the Active workbook
4. Then use the shortcut keys ALT + F8 or on the excel menu bar select Tools, Macro, Macro
5. Highligh the Macro you want and hit the Run button.In the long run, you should move the Macros to your personal.xls worksheet and then put custom buttons on your toolbar, attach the Macros to the buttons.
Lastly, below I have included the Macro Code so it can be viewed by the people who view this post.
Regards,
TD
Sub OldTabs()
‘
‘ MyTabs Macro
‘ Macro recorded 1/23/2004
‘
‘Macro Will Create a new worksheet and list all Tab names
‘ Dim MyTabs As Worksheet
Dim MyValue As Integer
Dim WC As Integer
Dim Placeholder As String
Dim r As Integer
‘Procedure MyValue = 10
WC = Worksheets.Count
Worksheets.Item(WC).Activate
Worksheets.Add After:=Worksheets.Item(WC)
ActiveSheet.Name = “Tab Control”
Cells(7, 3).Value = “New Names”
For r = 1 To WC
Worksheets.Item®.Activate
Placeholder = ActiveSheet.Name
Worksheets(“Tab Control”).Activate
Cells(MyValue + r, 2).Value = Placeholder
Cells(MyValue + r, 3).Value = Placeholder
Next r
End SubSub NewTabs()
‘
‘NewTabs Macro
‘Macro recorded 1/26/2004 by duthiet
‘
‘Maco will use list created in Tab Control [Column C]
‘that is then modified by User to rename the Tabs. MyValue = 10
WC = Worksheets.Count
For r = 1 To WC – 1
Worksheets(“Tab Control”).Activate
NewName = Cells(MyValue + r, 3).Value
Worksheets.Item®.Name = NewName
Next r
Application.DisplayAlerts = False
Worksheets(“Tab Control”).Delete
Application.DisplayAlerts = True
End Sub -
WSduthiet
AskWoody LoungerEdited by HansV to make URL clickable – see Help 19
Try going to http://www.microsoft.com[/url%5D find the office page and then look for templates.
I am not 100% sure but I think you will be able to find a bunch of Calendar Templates.Regards,
TD
-
WSduthiet
AskWoody Lounger(Edited by HansV to make URL clickable – see Help 19)
Ronny:
Microsoft at its main site http://www.microsoft.com[/url%5D at the office web page has a link to “Templates”
If you select this you will go to the Template page. At the bottom there is a category called education
If you select this category you will see a selection for Teachers then a sub-selection fro tests and grades.One of these seems to do exactly what you desire. Just download and save on you computer.
Regards,TD
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
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
-
June 2025 Office non-Security Updates
by
PKCano
2 hours, 20 minutes ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
5 minutes ago -
Firefox Red Panda Fun Stuff
by
Lars220
2 hours, 16 minutes ago -
How start headers and page numbers on page 3?
by
Davidhs
12 hours, 40 minutes ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
7 hours, 15 minutes ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
21 hours, 21 minutes ago -
Windows 11 Insider Preview build 26120.4230 (24H2) released to BETA
by
joep517
21 hours, 22 minutes ago -
MS Excel 2019 Now Prompts to Back Up With OneDrive
by
lmacri
11 hours, 4 minutes ago -
Firefox 139
by
Charlie
3 hours, 39 minutes ago -
Who knows what?
by
Will Fastie
16 hours, 28 minutes ago -
My top ten underappreciated features in Office
by
Peter Deegan
22 hours, 6 minutes ago -
WAU Manager — It’s your computer, you are in charge!
by
Deanna McElveen
16 hours, 30 minutes ago -
Misbehaving devices
by
Susan Bradley
1 day ago -
.NET 8.0 Desktop Runtime (v8.0.16) – Windows x86 Installer
by
WSmeyerbos
2 days, 4 hours ago -
Neowin poll : What do you plan to do on Windows 10 EOS
by
Alex5723
1 hour, 23 minutes ago -
May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band
by
Alex5723
2 days, 2 hours ago -
Discover the Best AI Tools for Everything
by
Alex5723
1 day, 1 hour ago -
Edge Seems To Be Gaining Weight
by
bbearren
1 day, 16 hours ago -
Rufus is available from the MSFT Store
by
PL1
2 days ago -
Microsoft : Ending USB-C® Port Confusion
by
Alex5723
3 days, 3 hours ago -
KB5061768 update for Intel vPro processor
by
drmark
1 day, 3 hours ago -
Outlook 365 classic has exhausted all shared resources
by
drmark
1 day, 2 hours ago -
My Simple Word 2010 Macro Is Not Working
by
mbennett555
2 days, 23 hours ago -
Office gets current release
by
Susan Bradley
3 days, 2 hours ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
4 days, 16 hours ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
4 days ago -
Stop the OneDrive defaults
by
CWBillow
4 days, 17 hours ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
5 days, 2 hours ago -
X Suspends Encrypted DMs
by
Alex5723
5 days, 5 hours ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
5 days, 5 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.