More than one label in Ref list

Hello there. Is it possible to use 2 columns as label? I have an issue where in a ref list sort by names, I cannot differentiate who is who. I would like to differentiate the two Elvis for intance. I would like to add either the last name or the license number along with the name.

3X_9_f_9f90a40b6e562f7f0fcb8f07a64f8183c17e9339.png

Solved Solved
0 7 1,455
1 ACCEPTED SOLUTION

In general you could create a concatenated VC such as

CONCATENATE([First Name], " ",[Last Name])

or

CONCATENATE([First Name], โ€œ-โ€,[License Number])

and assign the concatenated column as the label.

View solution in original post

7 REPLIES 7

In general you could create a concatenated VC such as

CONCATENATE([First Name], " ",[Last Name])

or

CONCATENATE([First Name], โ€œ-โ€,[License Number])

and assign the concatenated column as the label.

Thank you so much Suvrutt! It worked!

@Suvrutt_Gurjar โ€ฆ I just notice an issue that this has created in the app. When making CONCATENATE([First Name], " ",[Last Name]) as the label, now related stuff about the contacts do not show up. For intance, in the next picture it should show the related receipts for this contact, and now itโ€™s now showing after making this changes.

Not sure the label column should create the issue. Referenced and dereferenced ( children and parent) records are referenced by the keys on both sides - parent and child.

you are right. The only thing i needed to changed was the reference table to the client.

is it possible to hide the concatenated column in the create and update of the form?

Yes, you can do so using CONTEXT() expression, something like

CONTEXT("ViewType")<>"Form"

CONTEXT() - AppSheet Help

 

Top Labels in this Space