Hi G,
It sounds like you want to sort the column only the column is Numeric type. If I have misunderstood, please do not hesitate to let me know.
In SQL Server Reporting Services, we can use the function “IsNumeric” to check if a field is Numeric type.
So, to solve the issue, we can use the following expression:
=IIF(Parameters!AscDesc.Value="ASC",IIF(IsNumeric(Fields(Parameters!OrderBy.Value).Value), Sum(Fields(Parameters!OrderBy.Value).Value, 0),0)
Please feel free to ask, if you have any more questions.
Thanks,
Jin Chen
Jin Chen - MSFT