Adding Automatic Reference Number

  • Thread starter Thread starter z.ghulam
  • Start date Start date
Z

z.ghulam

Is it possible when creating a task request to have an add-on which
provides a unique reference and enters it into the task?

Thanks
 
One easy way is to use the BillingInformation field that's almost always
unused. That's a string field you can store a number as a string in there or
even a GUID. Or you can use the Item's UserProperties collection:

Set oUserProp = Item.UserProperties.Add("MyProp", olText)
oUserProp.Value = whatever
 

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