-
WSLeighW
AskWoody LoungerThanks Alan
I did not have that option enabled as there is a need to use the figures as precisely as possible. In this case, that meant that a value of 0.46 had to be considered other than the MS Excel calculated value of 0.460000000…08
My problem was answered by Legare (and Bat17 raised an issue with the same formula) although you make a good point of which others need to be aware.
Leigh
-
WSLeighW
AskWoody LoungerThe original MS Excel workbook (not the sample file posted by me) was actually intended to return text as both the True and False arguments. It relies on values being met to return the ‘text’ .
The solution came when Legare advised that the binary conversion could be allowed for by using the ROUND function. This did solve my particular case, mainly because the results in C7:C10 were not simple values, but the calculations returned from the values in B16:C18.
Many thanks for your input, Leigh
-
WSLeighW
AskWoody LoungerThanks for everyones’ replies.
I rushed to create the workbook and did put the closing bracket for the MAX function in the wrong place. (The PC I sent from did not have MS Excel to check before sending. What about Internet Explorer for reading Office files, I hear you ask… I forgot!)
I had heard about binary rounding but had not investigated it, but Legare’s response hit the nail right on the head, again.
I am grateful, Leigh
-
WSLeighW
AskWoody LoungerI would like to give you the MS one but my History gives a link that will not work today although the following is what is showing.
http://download.microsoft.com/download/exc…-us/recover.exe%5B/url%5D
But, for the good news, I found these other two sites that may assist along the same lines.
http://www.oshvn.net/en/software/microsoft…le_recovery.htm%5B/url%5D
http://www.erlandsendata.no/english/downloads/tools.htm%5B/url%5D
HTH, Leigh
-
WSLeighW
AskWoody LoungerI have tried the Recover.exe file posted on MS site and it seems to have done the trick. (Although many changes to VBA code have happened since the problem appeared.)
All it means I suppose, is that if the XL2000 code has the same opportunity to expose this (ancient) dialog box, it will; and like the version before it, be unable to do anything constructive and just freeze.
Leigh
-
WSLeighW
AskWoody LoungerIf anyone has an interest in this problem, the solution is simply to use the following reference when building the formula.
ActiveCell.Formula = "=IF(OR('WSheet'!A10="",'Results Sheet'!N10="ERROR"),"", ...."
This keeps the formula style that it was created in, and not FormulaR1C1 style.
Leigh
-
WSLeighW
AskWoody LoungerYou might be right about XL file being corrupted because it came up with the message “Unable to quit Excel”.
Whilst I have experienced this before (once or twice) I assumed it was a mistake in my VBA code.
Another point, I am in the practice of working on an XL97 project, closing XL97 then opening the project in XL2000 because its compiler reduces the file size much more efficiently than XL97 does.
Could this be part of the problem? (There is no XL2000 specific code added, I only use the Debug | Compile VBAProject command in XL2000.)
Regards, Leigh
-
WSLeighW
AskWoody LoungerHello Legare
Not to my knowledge… The PC does run concurrently both XL97 and XL2000 but that should not cause the problem. The PC has never had any version before XL97 installed so the dialog can only have surfaced through the MS code that runs XL.
Whilst I have seen it on an earlier PC that also ran XL97, it was upgraded from XL ver 5 to XL97.
Curious. I wonder if any Microsoft people know what is going on and why when the dialog appears, it locks up the system.
Leigh
-
WSLeighW
AskWoody LoungerThanks Leanne
Several of my macros create tables (that are populated by a userform). In one case, a table is then VBA cut and pasted into the header (it contains document control info).
So I will have to run a thorough test to check that.
Thanks again, Leigh
-
WSLeighW
AskWoody LoungerThank you Leanne and Sue for your replies.
Leanne, might I enquire as to what the ‘couple of problems with macros’ were, as one of my templates has both Wordbasic (from the Word 6 migration to W97) and VBA (W97) macros?
Thanks in advance, Leigh
-
WSLeighW
AskWoody LoungerThanks Legare!
That is exactly what was needed…
Now I will edit just 2 or 3 of the 21 lines of code that can be cut and pasted and replace 25 (sometimes 50) lines that had to be manually edited for each and every line before.
I will now go back and convert the 30 odd templates with this easier code.
Thanks again.
-
WSLeighW
AskWoody LoungerThanks for your reply Legare.
The workbook does need reference other workbooks (but not in the formula I posted). I am looking for a way to ‘write’ the code so that I don’t get the following example but something that adds the reference to additional worksheets (if they are added by the user). The Update Links dialog will appear if the formulae are placed directly in the worksheets and the user will not know how to resolve a formula that references an non-existent worksheet (but still needs the update to happen for those formulae referencing external workbooks.)
Clear as mud??
Range(“C134”).Select
ActiveCell.FormulaR1C1 = _
“=IF(Details!R9C2<2,"""",IF('Results Sheet (2)'!R41C6=""ERROR"","""",'Work Sheet (2)'!R11C7))"
ActiveCell.Offset(rowOffset:=1, columnOffset:=0).Activate
ActiveCell.FormulaR1C1 = _
"=IF(Details!R9C2<3,"""",IF('Results Sheet (3)'!R41C6=""ERROR"","""",'Work Sheet (3)'!R11C7))"
ActiveCell.Offset(rowOffset:=1, columnOffset:=0).Activate
ActiveCell.FormulaR1C1 = _
"=IF(Details!R9C2<4,"""",IF('Results Sheet (4)'!R41C6=""ERROR"","""",'Work Sheet (4)'!R11C7))"
ActiveCell.Offset(rowOffset:=1, columnOffset:=0).Activate
ActiveCell.FormulaR1C1 = _
"=IF(Details!R9C2<5,"""",IF('Results Sheet (5)'!R41C6=""ERROR"","""",'Work Sheet (5)'!R11C7))"
ActiveCell.Offset(rowOffset:=1, columnOffset:=0).Activate
ActiveCell.FormulaR1C1 = _
"=IF(Details!R9C2<6,"""",IF('Results Sheet (6)'!R41C6=""ERROR"","""",'Work Sheet (6)'!R11C7))"
ActiveCell.Offset(rowOffset:=1, columnOffset:=0).Activate
ActiveCell.FormulaR1C1 = _
"=IF(Details!R9C2<7,"""",IF('Results Sheet (7)'!R41C6=""ERROR"","""",'Work Sheet (7)'!R11C7))"
ActiveCell.Offset(rowOffset:=1, columnOffset:=0).Activate
ActiveCell.FormulaR1C1 = _
"=IF(Details!R9C2<8,"""",IF('Results Sheet (8)'!R41C6=""ERROR"","""",'Work Sheet (8)'!R11C7))"Only the reference to the worksheet name is changing and that requires a lot of manual editing.
Is there a better way?
Thanks, Leigh
-
WSLeighW
AskWoody LoungerThanks for your response Legare, but this is not an available solution.
The finished certificates are stored on a shared network drive and another user may be required to print it and ‘discovers’ the pagination has gone astray but cannot modify the layout as it is on protected sheets (to provide a consistent layout).
Any other suggestions?
-
WSLeighW
AskWoody LoungerHi Wassim
Thanks for your reply. I will try it out later today.
I might give the users a toolbar button to insert the image then get them to click and drag the object to its final destination to solve the problem of screen resolution. Thanks again.
Leigh
-
WSLeighW
AskWoody LoungerNovember 27, 2001 at 3:48 am in reply to: how do u define a variable to store decimal values (W97 – sr2) #554233Hi Diana
Do they really need to be stored as long or integer values?
What about a simple string? Are you using the values in calculations that absolutely require numbers?
Leigh
![]() |
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
-
[Easter Givweaway] Get Winxvideo AI and another 12 Software for free (Awaiting moderation)
by
Candice
34 minutes ago -
The time has come for AI-generated art
by
Catherine Barrett
3 hours, 24 minutes ago -
Hackers are using two-factor authentication to infect you
by
B. Livingston
3 hours, 25 minutes ago -
23 and you
by
Max Stul Oppenheimer
3 hours, 26 minutes ago -
April’s deluge of patches
by
Susan Bradley
6 minutes ago -
April’s deluge of patches
by
Susan Bradley
3 hours, 27 minutes ago -
Windows 11 Windows Updater question
by
Tex265
11 hours, 38 minutes ago -
Key, Key, my kingdom for a Key!
by
RetiredGeek
18 hours, 33 minutes ago -
Registry Patches for Windows 10
by
Drcard:))
23 hours, 3 minutes ago -
Cannot get line length to NOT wrap in Outlining in Word 365
by
CWBillow
5 hours, 38 minutes ago -
DDU (Display Driver Uninstaller) updates
by
Alex5723
16 hours, 26 minutes ago -
Align objects on a OneNote page
by
CWBillow
1 day, 4 hours ago -
OneNote Send To button?
by
CWBillow
1 day, 5 hours ago -
WU help needed with “Some settings are managed by your organization”
by
Peobody
1 day, 13 hours ago -
No Newsletters since 27 January
by
rog7
1 day, 9 hours ago -
Linux Mint Debian Edition 7 gets OEM support, death of Ubuntu-based Mint ?
by
Alex5723
14 hours, 21 minutes ago -
Windows Update “Areca Technology Corporation – System – 6.20.0.41”
by
Bruce
13 hours, 1 minute ago -
Google One Storage Questions
by
LHiggins
4 hours, 8 minutes ago -
Button Missing for Automatic Apps Updates
by
pmcjr6142
4 hours, 15 minutes ago -
Ancient SSD thinks it’s new
by
WSila
18 hours, 57 minutes ago -
Washington State lab testing provider exposed health data of 1.6 million people
by
Nibbled To Death By Ducks
2 days, 4 hours ago -
WinRE KB5057589 fake out
by
Susan Bradley
3 hours, 40 minutes ago -
The April 2025 Windows RE update might show as unsuccessful in Windows Update
by
Susan Bradley
1 day, 12 hours ago -
Firefox 137
by
Charlie
15 hours, 21 minutes ago -
Whisky, a popular Wine frontend for Mac gamers, is no more
by
Alex5723
2 days, 17 hours ago -
Windows 11 Insider Preview build 26120.3863 (24H2) released to BETA
by
joep517
2 days, 17 hours ago -
Windows 11 Insider Preview build 26200.5551 released to DEV
by
joep517
2 days, 17 hours ago -
New Windows 11 PC setup — can I start over in the middle to set up a local id?
by
ctRanger
1 day, 13 hours ago -
Windows 11 Insider Preview Build 26100.3902 (24H2) released to Release Preview
by
joep517
2 days, 20 hours ago -
Oracle kinda-sorta tells customers it was pwned
by
Nibbled To Death By Ducks
3 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.