sync00
Jan 16 2006, 03:54 PM
I tried the following WHERE clauses to return records where the 'costper' field is empty and neither return any results.
WHERE NZ([Transactions].[CostPer])=0
WHERE [Transactions].[CostPer]=0
WHERE IsNull([Transactions].[CostPer])
HiTechCoach
Jan 16 2006, 04:00 PM
Try:
WHERE [Transactions].[CostPer] is Null
Tip: If you will use the query design in design mode, it will validate your SQL syntax and also help you write it.
sync00
Jan 16 2006, 04:09 PM
I just realized that the other clauses actually were working.
I am working in design mode when I can figure out how to use it. Could Access have helped me figure out to use 'is null' as the criteria?
HiTechCoach
Jan 16 2006, 06:26 PM
QUOTE
Could Access have helped me figure out to use 'is null' as the criteria?
Yes.
QUOTE
I am working in design mode when I can figure out how to use it
This mode is the easiest mode to work in. It will be worth taking a little time to learn it.
sync00
Jan 16 2006, 07:38 PM
How could Access have helped me figure out to use 'is null' as the criteria?
sync00
Jan 16 2006, 07:48 PM
I see now how to use the Expression builder to enter 'null' as the criteria and it gets converted to 'is null'.
Today I experimented with using Query design mode to create various joins and I was pleasantly surprised to see how easy it is.
HiTechCoach
Jan 16 2006, 08:28 PM
If you have defined relationship for your tables, then when you add tables with defined relationships in the Query designer, it will automatically create the joins for you.
sync00
Jan 16 2006, 08:49 PM
I'm working with a third party app that uses Access as a back end. So I have no control over the table definitions.
HiTechCoach
Jan 16 2006, 10:20 PM
I use Access as a report writer for other third party apps.
If you create a front end and link to the back end database of the third party app, you can actually define relationships in your front end, even it the original developer did not create any. This will not effect the back end database.
sync00
Jan 17 2006, 11:19 AM
I have a database with links to the back end tables. I've seen the relationship screen but I didn't know you can add new ones. That will certainly be useful.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please
click here.