Im trying to show lists of ('bfsix', 'buddesc', 'rvname', balan', 'bfsix') fields. where rvname is from tbl_Revenue versus others from tbl_BudMaster.
user will be able to choose a bMonitor and the list is suppose to show recall information based on that selection.
for some reason, I am getting a blank list page.
It seems like it works fine if I remove the RvName.
Is it not possible to show lists of fields from different table?
below is the coding..
SELECT tbl_BudMaster.Bmonitor, tbl_BudMaster.AbID, tbl_BudMaster.BudDesc, tbl_Revenue.RvName, tbl_BudMaster.Balan, tbl_BudMaster.Bfsix
FROM (tbl_Bmonitor INNER JOIN tbl_BudMaster ON tbl_Bmonitor.Bmonitor = tbl_BudMaster.Bmonitor) INNER JOIN tbl_Revenue ON tbl_BudMaster.RevNum = tbl_Revenue.RevNum
WHERE (((tbl_BudMaster.Bmonitor)=[forms]![frm_BudgetUpdate]![cboBmonitor]));
user will be able to choose a bMonitor and the list is suppose to show recall information based on that selection.
for some reason, I am getting a blank list page.
It seems like it works fine if I remove the RvName.
Is it not possible to show lists of fields from different table?
below is the coding..
SELECT tbl_BudMaster.Bmonitor, tbl_BudMaster.AbID, tbl_BudMaster.BudDesc, tbl_Revenue.RvName, tbl_BudMaster.Balan, tbl_BudMaster.Bfsix
FROM (tbl_Bmonitor INNER JOIN tbl_BudMaster ON tbl_Bmonitor.Bmonitor = tbl_BudMaster.Bmonitor) INNER JOIN tbl_Revenue ON tbl_BudMaster.RevNum = tbl_Revenue.RevNum
WHERE (((tbl_BudMaster.Bmonitor)=[forms]![frm_BudgetUpdate]![cboBmonitor]));