Open excel file without creating a new instance

Hi all
I would like to come and write an Excel file (existing) from SW (with a vba macro) to write the name of my part, the name of the client...
But I run into a problem when I use this method:

Dim xlApp As Excel.Application
Set xlApp = Excel.Application
Dim wbk As Excel.Workbook
Dim sht As Excel.Worksheet

With xlApp
    .Visible = True
    .Workbooks.Open ("mondoc.xlsm")
    
End With

The problem is that this code creates a new instance of Excel for me
And this causes me a problem, especially if the mondoc file is already open in a first instance, the file is read-only
in case the file is not opened, it works, I can write, but my mondoc file itself contains macros that can no longer work with the other open files (because they are not all in the same instance of Excel).

My question
is it possible to open via SW the mondoc file in the same instance as the one already in progress on my workstation
If so, how to do it?
I've tested several things, but my VBA level is not very high
Thank you for the time.

Hello;
To check if an Excel file is already open:
If so, we use this file.
Otherwise we open this file:

Sub CheckAndOpenExcelFile()
    Dim xlApp As Object
    Dim xlWorkbook As Object
    Dim filePath As String
    Dim isFileOpen As Boolean

    ' Chemin du fichier Excel
    filePath = "C:\Chemin\Vers\Votre\Fichier.xlsx"

    ' Vérifiez si Excel est déjà ouvert
    On Error Resume Next
    Set xlApp = GetObject(, "Excel.Application")
    If xlApp Is Nothing Then
        ' Si Excel n'est pas ouvert, ouvrez une nouvelle instance
        Set xlApp = CreateObject("Excel.Application")
    End If
    On Error GoTo 0

    ' Vérifiez si le fichier est déjà ouvert
    isFileOpen = False
    For Each xlWorkbook In xlApp.Workbooks
        If xlWorkbook.FullName = filePath Then
            isFileOpen = True
            Set xlWorkbook = xlApp.Workbooks.Open(filePath)
            Exit For
        End If
    Next xlWorkbook

    ' Si le fichier n'est pas ouvert, ouvrez-le
    If Not isFileOpen Then
        Set xlWorkbook = xlApp.Workbooks.Open(filePath)
    End If

    ' Affichez Excel (facultatif)
    xlApp.Visible = True

    ' Faites quelque chose avec le fichier Excel
    ' ...

    ' Nettoyez
    Set xlWorkbook = Nothing
    Set xlApp = Nothing
End Sub

By replacing the path indicated in " filepath " with the location of your Excel file.

Note: remember to use the </> tags when posting a macro
image

… otherwise it may be automatically translated into French text. which does not make it easy to read

2 Likes

Thank you
It's a test of the whole
:pray:

It's great, thank you

I lacked that, I think

Set xlApp = GetObject(, "Excel.Application")

thank you again for the time spent, it allows me to move forward :+1:

1 Like

Hello
My code is almost finished, but I still have a small problem that I can't seem to solve
when the Excel file is opened, it's ok (it shows up and I can select my row)
on the other hand, if the Excel file is closed, the file opens well, but it remains in the background, I am forced to select it via the toolbar
Is there the possibility to force the display in the foreground of the Excel file???
If so, how to do it?
Thank you
I almost forgot, the Excel file is online (office365) and it also contains macros when opened.

Sub EXPDDC()



Set swApp = GetObject(, "SldWorks.Application") 'CreateObject("SldWorks.Application")
    Set swmodel = swApp.ActiveDoc
    
If swmodel Is Nothing Then
    Exit Sub
End If

If swmodel.GetType = 3 Then

    Set swDraw = swmodel
    Set swView = swDraw.GetFirstView
    Set swView = swView.GetNextView
    Set swParentModel = swView.ReferencedDocument
    prop1 = swParentModel.GetTitle & "-" & swParentModel.CustomInfo2("", "REVISION")
    If swParentModel.CustomInfo2("", "type") = "FAB" Then
    prop2 = swParentModel.CustomInfo2("", "client")
    ElseIf prop4 = "QUINCAI" Then
    prop2 = ""
    Else: MsgBox "MANQUE CODE FAMILLE"
    End If
    If swmodel.CustomInfo2("", "ETAT") = "VALIDE" And swParentModel.CustomInfo2("", "ETAT") = "VALIDE" Then prop3 = "etat ok"
    
    Else
    
    prop1 = swmodel.GetTitle & "-" & swmodel.CustomInfo2("", "REVISION")
    If swmodel.CustomInfo2("", "type") = "FAB" Then
    prop2 = swmodel.CustomInfo2("", "client")
    ElseIf prop4 = "QUINCAI" Then
    prop2 = ""
    Else: MsgBox "MANQUE CODE FAMILLE"
    End If
    If swmodel.CustomInfo2("", "ETAT") = "VALIDE" Then prop3 = "etat ok"
    
    
End If

If prop3 <> "etat ok" Then

    réponse = MsgBox("LES FICHIERS NE SONT PAS A L'ETAT   " & Chr(34) & " VALIDÉ " & Chr(34) & vbCrLf & "SOUHAITEZ VOUS TOUS DE MÊME EXPORTER VERS" & vbCrLf & Chr(34) & " DEMANDE DE CHIFFRAGE " & Chr(34) & " ?", vbExclamation + vbYesNo + vbDefaultButton2, "ETAT FICHIER")

End If
        
    If réponse = vbYes Or prop3 = "etat ok" Then
    
        'traitement
        Dim xlApp As Object
        Dim xlWorkbook As Object
        Dim filePath As String
        Dim Selec As Range
    
        ' Chemin du fichier Excel
        filePath = "chemin/monfichier.xlsm"

        'Vérifiez si Excel est déjà ouvert
        On Error Resume Next
        Set xlApp = GetObject(, "Excel.Application")
        If xlApp Is Nothing Then
        ' Si Excel n'est pas ouvert, ouvrez une nouvelle instance
        Set xlApp = CreateObject("Excel.Application")
        
    End If
    
        On Error GoTo 0
        Set xlWorkbook = xlApp.Workbooks.Open(filePath)
       
        ' Affichez Excel (facultatif)
        xlApp.Visible = True
        xlWorkbook.Sheets("feuil1").Activate
        

        ' Faites quelque chose avec le fichier Excel
        On Error Resume Next    'au cas où on clique sur Annuler
        Set Selec = xlApp.InputBox("CLIQUER SUR LA LIGNE DE DESTINATION", Type:=8)
        On Error GoTo 0
    
    If Not Selec Is Nothing Then
        Ligne = Selec.Row
        xlWorkbook.Sheets("feuil1").Cells(Ligne, 2) = prop1
        xlWorkbook.Sheets("feuil1").Cells(Ligne, 4) = prop2
        xlWorkbook.Save
    Else
        swApp.Visible = True
        swApp.SendMsgToUser "EXPORT ANNULÉ!"
    End If
  
    ' Nettoyez
    Set xlWorkbook = Nothing
    Set xlApp = Nothing

Else
    MsgBox "VEUILLEZ MODIFIER L'ETAT DES FICHIERS" & vbCrLf & "( AUCUNE ACTION EFECTUEE !!! )"
    End If

End Sub
saisissez ou collez du code ici

I've tried several things, set a tempo but it doesn't work
I did that

        Set xlWorkbook = xlApp.Workbooks.Open(filePath)
        Set xlWorkbook = xlApp.Workbooks.Open(filePath)

It works, but it's a bit of a joke to overcome a problem that I don't understand!!

… I'm perplexed, the whole Macro should not work with Excel in online version (you would have to open a web browser, log in, validate the ID), moreover Solidworks is not known to be super-compatible with office 365... and I don't think it's possible to manage it in VBA...

In theory, to display the Excel window in the foreground (for an offline excel), the command:

xlApp.Visible = True

is more than enough.

1 Like

For the readability of your code, remember to put your variable declarations The " Dim..."  " at the top... just under " Sub EXPDDC() "

move the lines:

    ' Nettoyez
    Set xlWorkbook = Nothing
    Set xlApp = Nothing

At the end of your macro, just above the end sub 

1 Like

No worries on my side. Office 365 since 2020 without problems

1 Like

This is because in my mind " office365 " is exclusively online (microsoftonline.com). And I can see the Excel installed locally.

1 Like

The file is online, but it is opened with the local Excel application
I don't work through a web explorer.

try the step-by-step mode (F8 key) and tell me if excel is visible in the foreground, when you get to the command "xlWorkbook.Sheets("feuil1").Activate"
(line 68) .

So, I put a stop on the previous line
and in step by step mode when I cross the line

xlWorkbook.Sheets("feuil1").Activate

nothing happens

(I can't do all the code in step mode, because when opening the Excel file which itself contains macros, I am forced to put the file in the foreground to execute them in step mode)

However, the line works
I tested by changing tabs
So it doesn't show up, but when I put it in the foreground manually, I of course follow the chosen tab

It must be coming from the macros when I opened my Excel file
because when I turn them off it works
I am looking in this direction
Thank you

In your internal Excel macro you wouldn't have a single line
xlApp.Visible = False
by chance
or
Application.ScreenUpdating = false

1 Like

That's exactly it
in the Workbook_Open() I call a macro in which it was missing
Application.ScreenUpdating = true

It works perfectly
thank you again for the time spent :pray::wink::+1:

1 Like