How to show more columns while adding information using Ref_Rows

I have table ‘vehiculos’ which have four columns ‘ID_VEHICULO’, ‘Marca’, ‘modelo’, ‘año’. And I have table ‘precios’ which have two columns ‘ID_PRECIO’, ‘vehiculo’, this last one is related with table ‘vehiculos’ using REF_ROWS with a virtual column, the idea it’s be able to select a vehicle of table ‘vehiculos’ while adding a new row in table ‘precios’ but in the dropdown input mode I can only see the value of ‘marca’ And I need also be able to see ‘modelo’ and ‘año’. How can I do this?

Solved Solved
0 2 185
1 ACCEPTED SOLUTION

You’ll need to concatenate together the multiple columns into a single column that is marked as the Label. See this article:

View solution in original post

2 REPLIES 2

You’ll need to concatenate together the multiple columns into a single column that is marked as the Label. See this article:

Thank you so much @Marc_Dillon, it worked perfectly!

Top Labels in this Space