Como mostrar todas as informações da outra tabela

Olá, estou fazendo um app para gerenciar pedidos. No app tenho tabela com o cadastro se cliente, porém quando seleciono ele em um novo pedido, só aparece o novo do cliente e não mostra na tela os demais dados do cadastro

Solved Solved
0 6 1,380
1 ACCEPTED SOLUTION

The typical approach to this is:

  1. Select the Customer from a dropdown list. The Customer column would be of type Ref with a Source table of the Customers table.

  2. Once the Customer is chosen, additional columns in the form can use Initial value expressions to set themselves. The expressions may dereference the Customer value to access values from the customer’s row in the Customers table.

  3. For instance, to get the customer’s address by copying the Address column value of the customer’s row in the Customers table, use the expression, [Customer].[Address]

See also:

View solution in original post

6 REPLIES 6
Top Labels in this Space