View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jim Cone Jim Cone is offline
external usenet poster
 
Posts: 3,290
Default Organizational charts

Tom,
You can use the Shell function, but you have to know the file path...
'------------------------------
Sub TestShellFunction()
Dim RetVal As Variant
RetVal = Shell("C:\Program Files\Common Files\Microsoft Shared\Orgchart\ORGCHART.EXE", 1)
End Sub
'------------------------------
Jim Cone
San Francisco, USA


"Tom Rudski"
wrote in message

Why can't I record a macro showing 'Organization chart' inserts? Can I use
Organization charts programmatically in EXCEl. Do I have to set references
or add-in?
TIA