Add new comment

Datei öffnen [Excel]

Submitted by Erik Wegner on
Body

Beschreibung

Das Makro erwartet einen Dateinamen und den Pfad zu dieser Datei als Parameter. Es prüft, ob die Datei bereits geöffnet ist und aktiviert dann dieses Fenster. Ist die Datei noch nicht geöffnet, wird sie geladen.

Quellcode
Sub springeZuDatei(pfad$, datei$)
If dateiOffen(datei$) Then
Workbooks(datei$).Activate
Else
Workbooks.Open FileName:=pfad$ + datei$
End If
End

SubFunction dateiOffen(datei$)
Dim r As Boolean
Dim w As Workbook
r = False
For Each w In Workbooks
If w.Name = datei$ Then r = True
Next w
dateiOffen = r
End Function
About text formats

Activitypub

  • Allowed HTML tags: <a href hreflang> <em> <strong> <ul type> <ol start type='1 A I'> <li> <dl> <dt> <dd> <h2 id='jump-*'> <h3 id> <h4 id> <h5 id> <h6 id>
  • Lines and paragraphs break automatically.
  • Web page addresses and email addresses turn into links automatically.
CAPTCHA
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.