Hi Folks
I'm using the code below and it seems to be working ok, However in the event I right click and delete a row I get a runtime error 13 type mismatch, can anyone suggest a solution.
Thanks
'
'Modified code to move record when complete dropdown is selected
'Includes zoom to drop down and confirmation dialog box
'And changes text to upper case
'
'Zoom code found here
'http://excelribbon.tips.net/T008448_Drop-Down_List_Font_Sizes.html
Private Sub WorkSheet_SelectionChange(ByVal Target As Range)
Dim rngDV As Range
Dim intZoom As Integer
Dim intZoomDV As Integer
intZoom = 50
intZoomDV = 100
Application.EnableEvents = False
On Error Resume Next
Set rngDV = Cells.SpecialCells(xlCellTypeAllValidation)
On Error GoTo errHandler
If rngDV Is Nothing Then GoTo errHandler
If Intersect(Target, rngDV) Is Nothing Then
With ActiveWindow
If .Zoom <> intZoom Then
.Zoom = intZoom
End If
End With
Else
With ActiveWindow
If .Zoom <> intZoomDV Then
.Zoom = intZoomDV
End If
End With
End If
exitHandler:
Application.EnableEvents = True
Exit Sub
errHandler:
GoTo exitHandler
End Sub
'
' This macro moves a row to a sheet called Complete, when it
' detects the text "OFF_HIRE" in the range "M2:M"
' http://www.excelforum.com/l/766727-asdf.html
'
Private Sub Worksheet_Change(ByVal Target As Range)
Dim LR As Long
LR = Range("A" & Rows.Count).End(xlUp).Row
If Flag = True Then Exit Sub
If Not Intersect(Target, Range("m2:m" & LR)) Is Nothing Then
If Target.Value = "OFF_HIRE" Then
Dim nResult As Long
nResult = MsgBox( _
Prompt:="Would you like to Off Hire this Record?", _
Buttons:=vbYesNo)
If nResult = vbNo Then
Exit Sub
End If
LR = Sheets("OFF_HIRE").Range("A" & Rows.Count).End(xlUp).Row + 1
Target.EntireRow.Copy
Sheets("OFF_HIRE").Range("A" & LR).PasteSpecial
Flag = True
Target.EntireRow.Delete
End If
End If
Application.CutCopyMode = False
Flag = False
'
'the code below changes text to upper case
'http://www.mrexcel.com/forum/excel-questions/66629-visual-basic-applications-convert-text-uppercase.html
'
Dim cell As Range
On Error Resume Next
Application.EnableEvents = False
For Each cell In Target
cell = UCase(cell)
Next
Application.EnableEvents = True
End Sub
Bookmarks