I have a datatable that looks like this (all columns have string datatype)
firstCol secondCol thirdCol
1_str1 1_str2 5,1
2_str1 2_str2 5
3_str1 3_str2
.... .... ....
note that on the thirdCol, some fields are blank.
as for the crystal report, I have used the cross-tab feature
Columns: firstCol
Rows: secondCol
Summarized Fields: thirdCol
The columns and rows are okay. The only problem that I have is the summarized fields. As far as I have searched, it is only used for numeric data (correct me if I'm wrong).
I even created a sample datatable and bound it on the crystal report. Instead of string, it displays the "numeric" (or you may call it integer, decimal, etc) datatype which is not what I want. Is there any way to display it as a string ?
this is the actual datatable

and this is the crystal report cross-tab output

nevermind the total column and row on the crystal report output. I just want to display "5,1" and "1" on the cross-tab, not the numbers.