NickMalloy
Programmer
I am trying to combine two column into one with an added'/' in between the values.
qryHeightWeight2.[Weight (lbs)] + '/' + Convert (decimal(10,2), round([Weight (lbs)]/2.2, 2)) AS totalWgt,
I am receiving an error
Syntax error converting the varchar value '/' to a column of data type int.
How can I accomplish this?
qryHeightWeight2.[Weight (lbs)] + '/' + Convert (decimal(10,2), round([Weight (lbs)]/2.2, 2)) AS totalWgt,
I am receiving an error
Syntax error converting the varchar value '/' to a column of data type int.
How can I accomplish this?