L
Louis
I want to print only the sheets that return a "Payment
Required" in cell L12.
Is there a way to do this?
Thanks
Louis
Required" in cell L12.
Is there a way to do this?
Thanks
Louis
-----Original Message-----
Hi Louis
try the following
sub conditional_print()
dim wks as worksheet
for each wks in activeworkbook.worksheets
if wks.range("L12").value = "Payment Required" then
wks.printout
end if
next
end sub
--
Regards
Frank Kabel
Frankfurt, Germany
.
I'm sorry....I'm not familiar w/ using macros.
Ron said:Hi Frank
Glad that I am not the only one that make mistakes <g>
Have a nice day