Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

all notes shown in one column

Status
Not open for further replies.

Ali29J

Technical User
May 13, 2004
203
GB
Hi All

I have a query which contains notes from each stage of a quote, i would like to combine all the notes in one column is this possible?

in simple terms at the moment the SQL i have is

SELECT RFQTracker.RFQID, RFQTracker.RFQDetailInputNotes, RFQTracker.QuoteSummaryInputNotes, RFQTracker.QuoteDetailInputNotes, RFQTracker.FreightCalcsNotes
FROM RFQTracker;

I would like amother column to take RFQDetailInputNotes, QuoteSummaryInputNotes, etc, and list them in a single column, a calculated column if you like...

Can anyone help??

Ali
 
Something like this ?
SELECT RFQID, RFQDetailInputNotes, QuoteSummaryInputNotes, QuoteDetailInputNotes, FreightCalcsNotes
, RFQDetailInputNotes & ' ' & QuoteSummaryInputNotes & ' ' & QuoteDetailInputNotes & ' ' & FreightCalcsNotes AS CombinedNotes
FROM RFQTracker

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top