Live-Forum - Die aktuellen Beiträge
Anzeige
Archiv - Navigation
1480to1484
Aktuelles Verzeichnis
Verzeichnis Index
Übersicht Verzeichnisse
Vorheriger Thread
Rückwärts Blättern
Nächster Thread
Vorwärts blättern
Anzeige
HERBERS
Excel-Forum (Archiv)
20+ Jahre Excel-Kompetenz: Von Anwendern, für Anwender
Inhaltsverzeichnis

need to modifiy vba code

need to modifiy vba code
17.03.2016 21:25:22
soletto
Heyho,
i have only a short question:
I need to modyfie this code row:
zmax = dies.Columns(1).Find(what:="?*", LookIn:=xlValues, _
lookat:=xlWhole, searchdirection:=xlPrevious).Row
I want to replace the "?*" so that is searching for this text:
"NaN"
in the search rows there is this code: =WENN(A3="NaN";"NaN";Übersicht!$B$45)
zmax = dies.Columns(1).Find(what:="NaN", LookIn:=xlValues, _
lookat:=xlWhole, searchdirection:=xlPrevious).Row
not working
Best thx

2
Beiträge zum Forumthread
Beiträge zu diesem Forumthread

Betreff
Datum
Anwender
Anzeige
AW: need to modifiy vba code
17.03.2016 23:15:38
Fennek
Hi,
try
Dim zmax as range
Set zmax = columns("a").find("NaN")
Zrow = zmax.row
I am not sure about the meaning, so just a little comment.
Regards

AW: need to modifiy vba code
18.03.2016 12:54:31
Rudi
Hallo,
zmax = dies.Columns(1).Find(what:="NaN", LookIn:=xlFormulas, _
lookat:=xlPart, searchdirection:=xlPrevious).Row
Gruß
Rudi

Beliebteste Forumthreads (12 Monate)

Anzeige

Beliebteste Forumthreads (12 Monate)

Anzeige
Anzeige
Anzeige