Gruppe
Allgemein
Problem
Wie kann ich über InputBoxes die Zeilen- und Spaltennummer durch Klicken im Tabellenblatt festlegen und das Ergebnis in einer MsgBox anzeigen lassen?
StandardModule: basMain
Sub Auswaehlen()
Dim iRow As Integer, iCol As Integer
Dim rng As Range
Set rng = Application.InputBox _
("Zeile auswählen:", Type:=8)
iRow = rng.Row
Set rng = Application.InputBox _
("Spalte auswählen:", Type:=8)
iCol = rng.Column
MsgBox Cells(iRow, iCol).Address(False, False)
End Sub