Run-time error 5

T

T De Villiers

Hi, running the code and at asterixed line am getting:
Run-time error '5': Invalid prcedure call or argument

Many Thanks


****

Sub printtariq()

Worksheets("Test").Select


a = Cells.Find("WorkOrder").Column
b = Cells.Find("CostC").Column
c = Cells.Find("PaperSize").Column
d = Cells.Find("PaperWeight").Column
e = Cells.Find("NoBW").Column
f = Cells.Find("printtype").Column

lastrow = Range("A65500").End(xlUp).Row
lastcol = Range("IV1").End(xlToLeft).Column
Cells(1, lastcol + 1) = "x"
Cells(1, lastcol + 1).Font.Bold = True
g = Cells.Find("x").Column

'For i = 2 To lastrow
'Cells(i, g) = Right(Cells(i, a), Len(Cells(i, a)) - 1)
'Next



'Cells(2, 9) = Replace(Cells(2, 1), 1, 1, "S")

Worksheets("MORI").Select
z = Cells.Find("Job No").Column
firstrowmori = Cells.Find("Job No").Row
'MsgBox z

lastrowmori = Cells(65000, z).End(xlUp).Row

Cells(26, z).EntireColumn.Select
Selection.Insert Shift:=xlToRight

Cells(22, 8).Select

***Cells(22, z - 1) = Right(Cells(22, z), Len(Cells(22, z)) - 1)
'Next
End Su
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top