PDA

View Full Version : Item Title - Inherit multiple fields


JGM22
12-09-2019, 03:10 PM
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

kinook
12-09-2019, 09:11 PM
Yes, use the concatenation operator.

[Server] || ' / ' || [Error] || ' / ' || [Customer]

https://kinook.com/UltraRecall/Manual/custom_item_titles.htm

cnewtonne
12-23-2019, 12:48 PM
I use something similar, concatenating task due date with item title