000
18.02.2005, 18:05 Uhr
~Toti
Gast
|
Tachen Leute,
ich muss für Excel ein VBA Modul schreiben. ICh hab aber so gut keine Ahnung davon. Also ich will als erstes die Tabelle durchlaufen und nach bestimmten Einträgen suchen und damit Start-Ranges definieren für mein späteres Programm, aber irgendwie klappt das nicht so wirklich.
Hier mal, was ich bis jetzt geschrieben habe zum Durchlaufen
Code: |
For i = 1 To 65000 Step 1 For j = 1 To 65000 Step 1 Select Case Cells(i, j) Case "Ref-Start" Set FirstRefCelStart = Cells(i + 1, j) Case "Ref-Row-End" Set FirstRefCelEnd = Cells(i + 1, j) Case "Function-Start" Set FirstFuncCelStart = Cells(i + 1, j) Case "Function-Col-End" Set LastFuncCelStart = Cells(i + 1, j) Case "Function-Row-End" Set FirstFuncCelEnd = Cells(i + 1, j) End Select Next j Next i
|
Kann mir einer erklären,warum das nicht klappt? |