I ask the user to select cells with an InputBox. I would then like to find the cell with the lowest row number in that range. Is there some function that does it or do I have to iterate through all cells? If the user selects from top to bottom there is no problem. But if the selected range looks like this "A10;A200;A1", I will get row 10 as result of my code below instead of row 1.
Set Rng = Application.InputBox( _
Title:="Selection", _
Prompt:="Please select cells", _
Type:=8)
Myfirstrow = Rng(1).Row