Happy 4th of July, why am I at my office?
I was givin this code a while ago and it is great.....
Sub printout1()
Dim ws As Worksheet
For Each ws In Worksheets
If ws.Range("b8") <> "" Then
ws.PrintOut
End If
Next ws
End Sub
Now this code will only print out the pages with data on cell B8...
Can i modify this so it will also sort those pages based on the call value in F7.
I am hopeing that i can get the pages printed in highest to lowest value of cell F7, but only if there is a value in B8.
Thanks for your thoughts and help
Happy 4th
Thomas
I was givin this code a while ago and it is great.....
Sub printout1()
Dim ws As Worksheet
For Each ws In Worksheets
If ws.Range("b8") <> "" Then
ws.PrintOut
End If
Next ws
End Sub
Now this code will only print out the pages with data on cell B8...
Can i modify this so it will also sort those pages based on the call value in F7.
I am hopeing that i can get the pages printed in highest to lowest value of cell F7, but only if there is a value in B8.
Thanks for your thoughts and help
Happy 4th
Thomas