J
Julia Boswell
Hi all
I've got a query that isn't returning the result I need.
The query is:
SELECT Str$([QuoteNo])+[SupplementaryID] AS Quote, Quotes.RecordID
FROM Quotes
QuoteNo is always populated, but SupplementaryID isn't, sometimes it's an
empty string.
The data in the table looks like this
QuoteNo SupplementaryID RecordID
1000 1
1000 A 2
1000 B 3
The results I want are:
1000 1
1000A 2
1000B 3
What I get is
1
1000A 2
1000B 3
I need the query to display the Quote details even if the SupplementaryID
field is not populated.
Any ideas?
Thanks
Julia
I've got a query that isn't returning the result I need.
The query is:
SELECT Str$([QuoteNo])+[SupplementaryID] AS Quote, Quotes.RecordID
FROM Quotes
QuoteNo is always populated, but SupplementaryID isn't, sometimes it's an
empty string.
The data in the table looks like this
QuoteNo SupplementaryID RecordID
1000 1
1000 A 2
1000 B 3
The results I want are:
1000 1
1000A 2
1000B 3
What I get is
1
1000A 2
1000B 3
I need the query to display the Quote details even if the SupplementaryID
field is not populated.
Any ideas?
Thanks
Julia