February 1, 201015 yr Hi, I do a search between 2 dates on my invoice layout. I then print the invoices. I need to assign the current date on the invoices as they are printed. The next time I run it the same thing but 2 weeks later. i need the printed date to stay on each set of invoices so i can find them again if i need them. Anyone?
February 5, 201015 yr As part of your script, just before the script actually prints the record, add the step to insert the current date, and select the date field. Keep in mind this will change the date each time you go to print that invoice, which I think is what you were asking. If you want it to only put in the date the very first time it's printed, but never change it, then add the following steps just before the actual print step in the script: If [Date] = "" Insert Current Date [Date] End if Edited February 5, 201015 yr by Guest
Create an account or sign in to comment