Advertisement
ExcelCalcs
Welcome, Guest
Please Login or Register.    Lost Password?
Can an Excel user without XLC read our files? (1 viewing) (1) Guest
Use this forum to discuss any problems, user suggestions or any other issue regarding the XLC software.
Go to bottom Post Reply Favoured: 0
TOPIC: Can an Excel user without XLC read our files?
#71
JohnDoyle (Admin)
Admin
Posts: 409
graph
User Online Now Click here to see the profile of this user
Gender: Male MoreVision Location: LEEDS, WEST YORKSHIRE, UK Birthdate: 1965-02-24
Can an Excel user without XLC read our files? 1 Year, 4 Months ago Karma: 470  
Clyde asked
QUOTE:
If XLC is used to develop a worksheet, will the formulas still exist when passed on to EXCEL users that do not have it installed?


The short answer is yes.

The longer answer is yes. All the XLC generated equations are enhanced windows metafiles (a native windows graphic) and will be stored within an excel document just like any other graphical object. If you want to send a document to a user without XLC installed the XLC functions OVD(), UND(), ODI(), UDI() & EQS() will generate a #NAME error. You can get round this by:

1) Send them to ExcelCalcs to pick up a free copy of XLC!

2) If you know that they do not have privileges to install software (maybe its a work machine) you can remove the functions using Excels 'Find and Replace'. The equation graphics will loose their parent EQS() definitions and the poor orphans will never be able to redrawn in response to a cell formula change - they will still hang around but they are just dumb graphics now.<br><br>Post edited by: JohnDoyle, at: 2007/03/17 11:13
 
Report to moderator   Logged Logged  
 
Talk to me about training.
Talk to me about engineering consultancy work and finite element analysis.
  The administrator has disabled public write access.
#75
jhardy (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Re:Can an Excel user without XLC read our files? 1 Year, 4 Months ago Karma: 0  
Portability of spreadsheets to users without XLC will sometimes be an issue. I have (and will) recommended that people should install XLC and try it out (I don't think many of them will go back to not using it!), but this is not always an option. (E.g. company IT procedures may not allow downloading and installing "unapproved" software). The following Macro will remove all OVD, UND, and EQS functions, leaving a clean (but "dumb" spreadsheet which can safely be circulated to those poor unfortunates who are not able to download this great utility.

Sub Un_XLC()
'
' Un_XLC Macro
' Deletes all references to "OVD", "UND" and "EQS"
'
Cells.Replace What:="ovd", Replacement:="", LookAt:=xlPart, SearchOrder _
:=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
Cells.Replace What:="und", Replacement:="", LookAt:=xlPart, SearchOrder _
:=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
Cells.Replace What:="=eqs(*)", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
End Sub
 
Report to moderator   Logged Logged  
  The administrator has disabled public write access.
#126
Vish (User)
Fresh Boarder
Posts: 9
graphgraph
User Offline Click here to see the profile of this user
Re:Can an Excel user without XLC read our files? 1 Year, 3 Months ago Karma: 5  
Thanks for the macro.
Will use it if needed.
Anyway this is not an issue with me.
I haven't been required to send my calculations in .xls format.
I send it in pdf format or printed copies on paper.
Regards
G Vishwanath
Bangalore, India
 
Report to moderator   Logged Logged  
  The administrator has disabled public write access.
#182
JohnDoyle (Admin)
Admin
Posts: 409
graph
User Online Now Click here to see the profile of this user
Gender: Male MoreVision Location: LEEDS, WEST YORKSHIRE, UK Birthdate: 1965-02-24
Re:Can an Excel user without XLC read our files? 1 Year, 2 Months ago Karma: 470  
A new button called 'Delete XLC functions' has been included in XLC version 05.07. This button must be used with caution because it deletes all functions "OVD", "UND", "ODI", "UDI" and "EQS". If one or more of these functions does not exist on the sheet Excel will prompt you to say that it could not find the data it was searching for.
Your worksheet will look the same but with XLC functions removed your equation objects become static graphic and cannot be updated. Your worksheet is now a native Excel file and can be sent to a user without XLC (some unfortunate people cannot install XLC on their machines at work).
It is strongly recommended that you always save an XLC version of any file that you create without XLC function! Be aware there is no undo on XLC!
 
Report to moderator   Logged Logged  
 
Talk to me about training.
Talk to me about engineering consultancy work and finite element analysis.
  The administrator has disabled public write access.
Go to top Post Reply