This basic code might give you a starting point
Option Explicit
Sub ListInvoices()
Dim strInvoiceNo As String
strInvoiceNo = Application.InputBox("Select Invoice to List")
Sheets("Invoice").Range("A20:D36").ClearContents
Range("$A$1:$G$75").AutoFilter Field:=1, Criteria1:=strInvoiceNo
Range("A2:A10").Copy
Sheets("Invoice").Range("A20").PasteSpecial xlValues
Range("E2:G10").Copy
Sheets("Invoice").Range("B20").PasteSpecial xlValues
Range("$A$1:$G$75").AutoFilter
End Sub
Assign this to your button.
Click on the invoice number you want to print on the Inputbox prompt
Hope this helps
Bookmarks