C
ccorley
I'm using an sql code (below) which uses a few lookup fields. Unfortunately
in the datasheet view, I get the "bound values" instead of the "display
values". How can I change the properties for the these lookup fields so I
can see the "display values" from the datasheet view?
SELECT
[Funding],[Date],[Description],[Company],[Expense_Type],[Amount],[Status]
FROM [Form_9_Status]
UNION ALL SELECT
[Funding],[Date],[Description],[Company],[Expense_Type],[Amount],[Status]
FROM [TDY_Status]
UNION ALL SELECT
[Funding],[Date],[Description],[Company],[Expense_Type],[Amount],[Status]
FROM [Order_Status] INNER JOIN [Funding] ON Order_Status.Funding = Funding.ID;
in the datasheet view, I get the "bound values" instead of the "display
values". How can I change the properties for the these lookup fields so I
can see the "display values" from the datasheet view?
SELECT
[Funding],[Date],[Description],[Company],[Expense_Type],[Amount],[Status]
FROM [Form_9_Status]
UNION ALL SELECT
[Funding],[Date],[Description],[Company],[Expense_Type],[Amount],[Status]
FROM [TDY_Status]
UNION ALL SELECT
[Funding],[Date],[Description],[Company],[Expense_Type],[Amount],[Status]
FROM [Order_Status] INNER JOIN [Funding] ON Order_Status.Funding = Funding.ID;