Hi All!
I have Access 2007-2010. I'm a beginner to SQL so I think this is probably an easy solve for someone other than me! Any help as soon as possible is greatly appreciated.
My table is called ASU CA
My field names for the query are Region (data type is Text in the table), Brokerage – non NRI (checkbox-data type is yes/no- format is true/false in the table), and Brokerage – NRI (data type is yes/no- format is true/false in the table)
I'm trying to have the query generate when Region is "East" and the Brokerage – non NRI and Brokerage – NRI are both True (check boxes are selected).
The below is my SQL but it just comes up blank, I was thinking this might just be too much for Access to sort? Or it's probably just more complicated than I thought.
SELECT [ASU CA].Region, [ASU CA].[Brokerage - non NRI], [ASU CA].[NRI Brokerage]
FROM [ASU CA]
WHERE ((([ASU CA].Region)="East") AND (([ASU CA].[Brokerage - non NRI])=True) AND (([ASU CA].[NRI Brokerage])=True));
This is for someone at work and I suggested just making two queries one for East-Brokerage-non-NRI and one for East-Brokerage- NRI but this person would like it all one one query... Thanks in advance for any help!
I have Access 2007-2010. I'm a beginner to SQL so I think this is probably an easy solve for someone other than me! Any help as soon as possible is greatly appreciated.
My table is called ASU CA
My field names for the query are Region (data type is Text in the table), Brokerage – non NRI (checkbox-data type is yes/no- format is true/false in the table), and Brokerage – NRI (data type is yes/no- format is true/false in the table)
I'm trying to have the query generate when Region is "East" and the Brokerage – non NRI and Brokerage – NRI are both True (check boxes are selected).
The below is my SQL but it just comes up blank, I was thinking this might just be too much for Access to sort? Or it's probably just more complicated than I thought.
SELECT [ASU CA].Region, [ASU CA].[Brokerage - non NRI], [ASU CA].[NRI Brokerage]
FROM [ASU CA]
WHERE ((([ASU CA].Region)="East") AND (([ASU CA].[Brokerage - non NRI])=True) AND (([ASU CA].[NRI Brokerage])=True));
This is for someone at work and I suggested just making two queries one for East-Brokerage-non-NRI and one for East-Brokerage- NRI but this person would like it all one one query... Thanks in advance for any help!