F
Francis Hookham
Input Box Cancel button should stop the subroutine.
OK button tests to see if 'x' has been changed.
I cannot see what is wrong here:
LastUsedRow = Sheets("Pages").Cells(Rows.Count, 5).End(xlUp).Row
DoorNum = Cells(LastUsedRow, 5)
x = InputBox("Door number?", _
"Additional items to door", DoorNum, 1)
If x = False Then
End
ElseIf x <> DoorNum Then
DoorNum = x
End If
Francis Hookham
OK button tests to see if 'x' has been changed.
I cannot see what is wrong here:
LastUsedRow = Sheets("Pages").Cells(Rows.Count, 5).End(xlUp).Row
DoorNum = Cells(LastUsedRow, 5)
x = InputBox("Door number?", _
"Additional items to door", DoorNum, 1)
If x = False Then
End
ElseIf x <> DoorNum Then
DoorNum = x
End If
Francis Hookham