How to change a display name of column based on selected enumlist

Basically i want to change the display name of “Charge To Office 1” and “charge to Office 2”, instead of 1 & 2 i want to replace the numeric into names based on the selected value from a enum list. Example:


If i select Bryant at the fist position of the list and william in the second then the “Charge to Office 1” and “Charge To Office 2” become “Charge To Office Bryant” and “charge to Office William”

0 4 148
4 REPLIES 4

Aurelien
Google Developer Expert
Google Developer Expert

Hi @Muhammad_Rafif

What about the Display Name field ?
3X_d_e_def97991969a214d8f803d50e80dff0843f12e9e.png
with expression instead:
“Charge To " & [Name]

but if i select 2 names it becomes “Charge To Office Bryant, William” instead of “Charge To Bryant”

@Muhammad_Rafif
Try that instead:

for the first one:
“Charge To " & INDEX([Name],1)
and for the second one:
“Charge To " & INDEX([Name],2)

for reference:

it works! Thanks a Lot

Top Labels in this Space