Access fields by using lookup

I can do a lookup on a list and then scroll through the different titles and select one, for example. Can I also extend this so that I can access a different column of the entry through this selection?

So, for example, I select the title and also get the field e.g. Description (multiline) available and can use it?

Like a kind of lookup, but in which I get a multi-line text for further processing.

THX

Hi @Pfeilomatic,

Try using the "Extra fields" property: Lookup control — Plumsail SharePoint Forms Documentation

You can then access the fields like so: fd.control('LookupControl').value.FieldName
Make sure to replace LookupControl with the name of your control and FieldName with the name of the extra field you need to access.