Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Hi
I have a button aon a worksheet that asks the user to select a 'job' to be printed. after input that number is searched for in column B of 'Thursday's log' and when this number is found the row of data is copied and pasted into the 'formula' worksheet. I thought I had this working, but I have copied the workbook onto another computer at work and it doesn't seem to work. Can anybody help, here is the script I have Sub print_thursdays_jobcard() Dim i As Integer Dim iRow As Integer Dim wks1 As Worksheet, wks2 As Worksheet, wks3 As Worksheet Dim lLastRow As Long On Error GoTo err_handler Set wks1 = Worksheets("Thursday's log") Set wks2 = Worksheets("formula") Set wks3 = Worksheets("jobcard") i = InputBox("Please enter the job number you wish to print a job card for") iRow = Columns("B:B").Find _ (What:=i, _ After:=Range("B1"), _ LookIn:=xlValues, _ LookAt:=xlWhole, _ SearchOrder:=xlByColumns, _ SearchDirection:=xlNext, _ MatchCase:=False, _ SearchFormat:=False).Row Worksheets("thursday's log").Activate ActiveSheet.Cells(iRow, 1).EntireRow.Copy Destination _ :=Worksheets("formula").Cells(2, 1) wks3.PrintOut Exit Sub err_handler: MsgBox "No job with the number " & i & " has been found, please try again!" End Sub thanks Anthony |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I use a check box to accept a calculation | Excel Discussion (Misc queries) | |||
Auto spell check as in word | Excel Discussion (Misc queries) | |||
check box formatting | Excel Discussion (Misc queries) | |||
Using a Check Box as a control item | Excel Discussion (Misc queries) | |||
Creating a check box that does not require security clearance. | Excel Worksheet Functions |