I have a crosstab query which pulls version numbers for a specific report. i.e.
Client A_3.1 A_3.2 A_3.21 B_4.0
A x
B x
C x
etc...
everything works fine, except the decimals are converted to underscores. i.e.
Client A_3_1 A_3_2 A_3_21 B_4_0
I need to know if there is a way to force the decimals in or replace generate the column headers with a different character than the underscore, since I can do a string replace on the final report for an unused charaters. Since some of my titles have legit underscores in them, I can not do a string replace of the underscores to decimal.
Is there a way around this?
Client A_3.1 A_3.2 A_3.21 B_4.0
A x
B x
C x
etc...
everything works fine, except the decimals are converted to underscores. i.e.
Client A_3_1 A_3_2 A_3_21 B_4_0
I need to know if there is a way to force the decimals in or replace generate the column headers with a different character than the underscore, since I can do a string replace on the final report for an unused charaters. Since some of my titles have legit underscores in them, I can not do a string replace of the underscores to decimal.
Is there a way around this?