Concatenation

K

krymer

I need to concatenate data that I have, the output needs to look like this:
GPA:3.7 - Grade: A
I have created fields in the query based on GPA and Grade, and I am using
the expression builder to create this query, however I don't know what
expression to use. I have the following expression entered into the query:

[Students]![GPA] & "("&[Students]![Grade]&")" and I am getting the following
output: 3.2 (A) where as 3.2 is the actual GPA of a record and A is the
corresponding grade. I need the actual words GPA: to be displayed before the
numerical GPA value is displayed , I then need a dash (-) and the word Grade:
with the actual grade letter. Please Help, thanks!
 
M

Marshall Barton

krymer said:
I need to concatenate data that I have, the output needs to look like this:
GPA:3.7 - Grade: A
I have created fields in the query based on GPA and Grade, and I am using
the expression builder to create this query, however I don't know what
expression to use. I have the following expression entered into the query:

[Students]![GPA] & "("&[Students]![Grade]&")" and I am getting the following
output: 3.2 (A) where as 3.2 is the actual GPA of a record and A is the
corresponding grade. I need the actual words GPA: to be displayed before the
numerical GPA value is displayed , I then need a dash (-) and the word Grade:
with the actual grade letter.


"GPS: " & GPA & "- Grade: " & Grade
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top