Print Draft copy

amna77

Active Member
Joined
May 9, 2002
Messages
251
Hi,
Can some one help me to print a report. Actully in my query (Report is based on that), I have four names fields. Engineers names comes in there. If all 4 engineers sign that documnets, then I want to print. Which is doing right now.
But If the any name field is empty out of 4, and some one wants to get a print out for that documnet, then it should say "DRAFT" as a water mark. Is it possible to do that?
Please help.

Thanks
Amna
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
OK, so in one record, you have four name fields and if any one of them is Null, you want the Report Header to say "Draft". Is that right? If so, in the Report's Code:
Code:
If Isnull(Me.[Your1stTextbox] or Me.[Your2ndTextbox]...or Me.[Your4thTextbox]) then
me.YourReportLabel.Caption="Draft"
End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,221,544
Messages
6,160,431
Members
451,646
Latest member
mmix803

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top