Hi rhuseman, try
Sub print_selected_items()
Dim cellrow As Integer
Dim cellcollum As Integer
Dim cellvalue As String
Dim cellcollumbarcode As Integer
cellrow = 2 'Test cell row number
cellcollum = 15 'Test cell collum number
cellcollumbarcode = 17 ' Print cell collum number
cellvalue = "" ' Test cell deciding factor
For cellrow = 2 To 100 'For loop that index the cell row looking for a "true"
cellvalue = Cells(cellrow, cellcollum).Value 'sets varible equal to test cell
If cellvalue = "True" Then
ActiveSheet.PageSetup.PrintArea = Cells(cellrow, cellcollum)
With Worksheets
.PrintOut , , 1
End With
End If
Next cellrow 'indexes for loop
End Sub
Bookmarks