J
j.t.w
Here's the table structure...
dbo_IMITMIDX_SQL
item_no
item_desc_1
item_desc_2
dbo_IMINVLOC_SQL
item_no
avg_cost
On a subform, I'm wanting to display a recordset to allow users to
update the avg_cost field. This could easily be done if I just
displayed the item_no and avg_cost from the dbo_IMINVLOC_SQL table.
But, I'd also like to display the item_desc fields as well to make it
more intuitive when users update the avg_cost field.
Here's the query I'm working with...
SELECT dbo_IMITMIDX_SQL.item_no, Trim([item_desc_1]) & " " &
[item_desc_2] AS [desc], dbo_IMINVLOC_SQL.avg_cost
FROM dbo_IMITMIDX_SQL INNER JOIN dbo_IMINVLOC_SQL ON
dbo_IMITMIDX_SQL.item_no = dbo_IMINVLOC_SQL.item_no;
Does anyone have any suggestions on how I can accomplish this? Also,
please let me know if I should be posting this message in a different
group.
Thanks,
j.t.w
dbo_IMITMIDX_SQL
item_no
item_desc_1
item_desc_2
dbo_IMINVLOC_SQL
item_no
avg_cost
On a subform, I'm wanting to display a recordset to allow users to
update the avg_cost field. This could easily be done if I just
displayed the item_no and avg_cost from the dbo_IMINVLOC_SQL table.
But, I'd also like to display the item_desc fields as well to make it
more intuitive when users update the avg_cost field.
Here's the query I'm working with...
SELECT dbo_IMITMIDX_SQL.item_no, Trim([item_desc_1]) & " " &
[item_desc_2] AS [desc], dbo_IMINVLOC_SQL.avg_cost
FROM dbo_IMITMIDX_SQL INNER JOIN dbo_IMINVLOC_SQL ON
dbo_IMITMIDX_SQL.item_no = dbo_IMINVLOC_SQL.item_no;
Does anyone have any suggestions on how I can accomplish this? Also,
please let me know if I should be posting this message in a different
group.
Thanks,
j.t.w