good afternoon: please be patient the code that is not working in access
2007 comes from the following:
the first being that i have a macro that wants to bring you into a subform
using the gotocontrol but microsoft is telling me that the gotocontrol
command is not available in 2007.
my second problem is that i am receiving a error message when i try to
retrieve info from a subform. it says that my information from a table
called managed and partners has a field called letter that "could refer to
more than one table" i get an error 2538 and 2950. my letter field is the
field that is common to all of my tables. the section of my db that is coming
under complaint has code as follows:
SELECT [TABLE LEDGER COMBO].PARTNERSHI, [PARTNERSHIP NAMES]![DATE] AS [CUR
DATE], [TABLE LEDGER COMBO].NUMBER, [TABLE LEDGER COMBO].[#UNITS],
[PARTNERSHIP NAMES].NAV, [#UNITS]*[NAV] AS [CUR VALU], [QUERY FOR MANAGED &
PARTNERS FORM (2)].[SumOf#UNITS], [#UNITS]/[SUMOF#UNITS] AS [%OFPARTNERSHIP]
FROM ([TABLE LEDGER COMBO] INNER JOIN [PARTNERSHIP NAMES] ON [TABLE LEDGER
COMBO].PARTNERSHI = [PARTNERSHIP NAMES].PARTNERSHI) INNER JOIN [QUERY FOR
MANAGED & PARTNERS FORM (2)] ON [PARTNERSHIP NAMES].PARTNERSHI = [QUERY FOR
MANAGED & PARTNERS FORM (2)].PARTNERSHI
ORDER BY [TABLE LEDGER COMBO].PARTNERSHI, [TABLE LEDGER COMBO].NUMBER;
anything you can do to get my db going would be greatly appreciated.