I know nothing about SSRS
I have an SSRS report with a column containing text and numbers. I want the column sorted with all the text first sorted alphabetically, then all the numbers sorted numerically.
The data as it stands is all just strings.
Is there a way to do this by simply writing a sort expression, or do I need to do the sort on the data ahead of time somehow and assign a sort order member?
example:
If I have the following:
“cat”
“bear”
“1”
“5.0”
“10”
“-4”
“dog”
“-6”
I would want:
“bear”
“cat”
“dog”
“-6”
“-4”
“1”
“5.0”
“10”
thanks,
Mark Stoddard
Subject to revision based on the answers to my comment, but here is a start.
Result