#1
|
|||
|
|||
Item Title - Inherit multiple fields
Is there a way to inherit the values from several fields and plug them into the Item Title field?
Example Server = ABC Error = 6 Customer = XYZ Item_Title = Server & " / " & Error & " / " & Customer When the document is saved is would show the Item_Title as ABC / 6 / XYZ |
#2
|
|||
|
|||
Yes, use the concatenation operator.
[Server] || ' / ' || [Error] || ' / ' || [Customer] https://kinook.com/UltraRecall/Manua...tem_titles.htm |
#3
|
|||
|
|||
I use something similar, concatenating task due date with item title
|
|
|