how can i put a unique number in a header for a git certificat for

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

Guest

If i were printing gift certificates, in excel, and I wanted to put a unique
number on each one that was printed, how would i do this
I know i can put the time and date and page number on the footer, but that
number does'nt change
can someone please help
 
You can generate a unique number with:

=SUBSTITUTE(NOW(),".","")

HTH
Jason
Atlanta, GA
 
Hi Konstantine
In addition to Jasons formula.
If the number is too big for your needs, try this:

=RIGHT(SUBSTITUTE(NOW(),".",""),8)
Where the 8 on the end can be changed to suit how many digits you desire.

HTH
Michael
 

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