MkIIISupra
Programmer
I am trying use a query to build a report. The data comes from two different tables that are joined in the relationship window.
Table Definitions:
-- tblTempAddSch
|-- ID - AutoNumber
|-- distName – Text = 28
|-- county – Text = 2
|-- distNum – Text = 5
|-- elemNum – Text = 7
|-- charterNum – Text = 4
|-- partNum – Text = 4
|-- coDist – Text = 7
|-- soNum – Number = Long Integer
|-- altDesc – Text = 15
|-- coDistNum – Text = 10 :: Format – 00\-00000;;
-- tblMasterSchool
PK |-- coDistNum – Text = 10 :: Format – 00\-00000;;
|-- schNum – Text = 8
|-- schName – Text = 13
Query Definition
-- qrySEL_PdbReport
| SELECT tblTmpAddSch.distNum, tblTmpAddSch.distName, tblTmpAddSch.elemNum, tblMasterSchool.schNum, tblMasterSchool.schName
| FROM tblTmpAddSch INNER JOIN tblMasterSchool ON tblTmpAddSch.coDistNum = tblMasterSchool.coDistnum
| WHERE (((tblMasterSchool.coDistNum)=[tblTmpAddSch]![coDistNum]));
Now I have been able to do this up till this new version of Access! This is the second major problem I have had with the newer versions! Is there a way around this? I can't downgrade, corporate standard says no. So I have to figure out how to make these simple things I used to be able to do in Access 2000 without a second thought, work in the [SARCASM]“newer improved Access!”[/SARCASM]
Access Version: 2003(11.6566.6568) SP2
Part of Microsoft Office Professional Edition 2003
Windows Version: Microsoft Windows XP Professional 5.1.2600 Service Pack 1 build 2600
One by one the penguins steal my sanity!
Table Definitions:
-- tblTempAddSch
|-- ID - AutoNumber
|-- distName – Text = 28
|-- county – Text = 2
|-- distNum – Text = 5
|-- elemNum – Text = 7
|-- charterNum – Text = 4
|-- partNum – Text = 4
|-- coDist – Text = 7
|-- soNum – Number = Long Integer
|-- altDesc – Text = 15
|-- coDistNum – Text = 10 :: Format – 00\-00000;;
-- tblMasterSchool
PK |-- coDistNum – Text = 10 :: Format – 00\-00000;;
|-- schNum – Text = 8
|-- schName – Text = 13
Query Definition
-- qrySEL_PdbReport
| SELECT tblTmpAddSch.distNum, tblTmpAddSch.distName, tblTmpAddSch.elemNum, tblMasterSchool.schNum, tblMasterSchool.schName
| FROM tblTmpAddSch INNER JOIN tblMasterSchool ON tblTmpAddSch.coDistNum = tblMasterSchool.coDistnum
| WHERE (((tblMasterSchool.coDistNum)=[tblTmpAddSch]![coDistNum]));
Now I have been able to do this up till this new version of Access! This is the second major problem I have had with the newer versions! Is there a way around this? I can't downgrade, corporate standard says no. So I have to figure out how to make these simple things I used to be able to do in Access 2000 without a second thought, work in the [SARCASM]“newer improved Access!”[/SARCASM]
Access Version: 2003(11.6566.6568) SP2
Part of Microsoft Office Professional Edition 2003
Windows Version: Microsoft Windows XP Professional 5.1.2600 Service Pack 1 build 2600
One by one the penguins steal my sanity!