Hi,
Can I put this field values in double qoutes in a query
([tlkpStockLocation].[StockLocationID]) & " " &" " ([tlkpStockLocation].[StockLocationDescr]. I am not able to figure it out.Can someone please help me. Thanks in advance.
Not sure what you are asking. What do you want returned? Example:
stockLocationID = 1234
stockLocationdesc = ShelfOne
You are now returning
1234 ShelfOne
With two spaces between 1234 and ShelfOne. Are you saying you want one of these?
1234" "" "ShelfOne
"1234""ShelfOne"
"1234" "ShelOne"
1234""ShelfOne
or
([tlkpStockLocation].[StockLocationID]) & " " & ([tlkpStockLocation].[StockLocationDescr])
Duane MS Access MVP
[green]Ask a great question, get a great answer.[/green] [red]Ask a vague question, get a vague answer.[/red]
[green]Find out how to get great answers faq219-2884.[/green]
Hi,
Thanks for immediate reply. I came back today and used what PHV suggested.
[tlkpStockLocation].[StockLocationID] & ' - "' & [tlkpStockLocation].[StockLocationDescr] & '"'
I am getting
1234 - "ShelfOne" but I need
"1234" - "ShelfOne"
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.