B
bymarce
I have a query that gets values from [Properties.Greek],
[Properties.Abbreviation], and [TestMethods.Abbreviation]. I have a
calculated field that puts them together with a comma or a space between
them. I want [Properties.Greek] to show up in symbol font and the others in
any regular font. How can I do this? Can I use format in the sql for this
purpose. My goal with this is to use this field as column headings in a
crosstab query. Thanks. Here is the sql:
SELECT Properties.Abbreviation AS Properties_Abbreviation, Properties.Greek,
TestMethods.Abbreviation AS TestMethods_Abbreviation, [Greek] & " " &
[Properties.Abbreviation] & ", " & [TestMethods.Abbreviation] AS
ColumnHeadings
FROM TestMethods INNER JOIN (Properties INNER JOIN PropertiesMethodsJunction
ON Properties.Property = PropertiesMethodsJunction.JProperty) ON
TestMethods.Method = PropertiesMethodsJunction.JMethod;
[Properties.Abbreviation], and [TestMethods.Abbreviation]. I have a
calculated field that puts them together with a comma or a space between
them. I want [Properties.Greek] to show up in symbol font and the others in
any regular font. How can I do this? Can I use format in the sql for this
purpose. My goal with this is to use this field as column headings in a
crosstab query. Thanks. Here is the sql:
SELECT Properties.Abbreviation AS Properties_Abbreviation, Properties.Greek,
TestMethods.Abbreviation AS TestMethods_Abbreviation, [Greek] & " " &
[Properties.Abbreviation] & ", " & [TestMethods.Abbreviation] AS
ColumnHeadings
FROM TestMethods INNER JOIN (Properties INNER JOIN PropertiesMethodsJunction
ON Properties.Property = PropertiesMethodsJunction.JProperty) ON
TestMethods.Method = PropertiesMethodsJunction.JMethod;