Hi All,
I need help to show the selected values from access DB to label box below is my access query to select the identical values exists in two tables and shown as "Result" column
Result
1
15
89
63
.
.
.
I need help to show the selected values from access DB to label box below is my access query to select the identical values exists in two tables and shown as "Result" column
Result
1
15
89
63
.
.
.
Code:
MyQuery = "select (B.Qtty) as Result from CashRegister A INNER JOIN CashTrans B on A.CashRegisterId=B.CashRegisterId where A.CashRegisterId=26"