Convert the value into double or decimal
Goal:
Filtrate the value in the column by using filter function
Problem:
I get error message due to decimal and double.
How should I convert to value 55 into double or decimal? Today, I'm using SSRS 2012.
August 12th, 2012 3:43pm
Hi,
Looks like ssrs considers 55 of string type. There is a workaround to this. You can use the expression (fx) as below
=CDbl(55)
- Chintak (My Blog)
Free Windows Admin Tool Kit Click here and download it now
August 12th, 2012 3:54pm
HI Metal !
You can alternatively CAST it to Decimal as well using below expression;
=CDec(55)
Please let me know if this helps. Hopefully i have answered you correctly.
Thanks, Hasham Niaz
August 12th, 2012 4:11pm