/
How do I concatenate fields in a lookup?
How do I concatenate fields in a lookup?
Step-by-step guide
- Click on Modules.
- Select the Module with the appropriate form field.
- Select the Forms tab.
- Select Field List button "Create/Update Fields".
- Use the filter to find relevant field.
- Select Edit on the field.
- Select Custom JavaScript tab.
- In the “filter” section type:
for (var i = 0, len = fieldScope.items.length; i < len; i++) {
var item = fieldScope.items[i];
if (!item.descriptionAppended) {
var separator = '-';
item.descriptionAppended = false;
//Check if the item has a description field, otherwise, use the customLongText1 field
//which is the description
var desc = item.description;
if (!desc) {
desc = item.customLongText1;
}
item.text = item.customString1+ separator + desc;
}
}
return fieldScope.items;
Related articles
, multiple selections available,
Related content
End-User Help
End-User Help
More like this
End-User Overview
End-User Overview
More like this
Inventory Audit Demo
Inventory Audit Demo
More like this
Grid View Options
Grid View Options
More like this
Release Log
Release Log
More like this