DOB to print 01/01/xx on report

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a report with employees date of birth and need to "X" out the year
when printing. Can someone help ??

Thanks!
 
Tina:

You can in your report's query alias the dob field and use the format
function to format the dob as you desire like this:

DOB: format([YourDOBFieldName],"mm/dd/xx")

Note that if your table field is DOB, then you have to use a different alias
name such as DOBMasked:
 
Use the format function and format the control as "mm/dd"
If you require x's for the year then try "mm/dd/xxxx"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top