Code:
Dim mcSide As Variant
Dim mcCellSide As Variant
Dim mcNewLimit As Variant
mcSide = ThisWorkbook.Worksheets("Summary").Range("B" & Target.Row).Value
mcNewLimit = InputBox("Enter the new Limit", "New Limit")
Range("S3").Value = mcNewLimit
If mcNewLimit = vbCancel Then
Exit Sub
End If
mcNewLimit = mcNewLimit / 100
When I hit cancel, I can't exit the sub for some reason. What am I doing wrong here?