sql - How to do conversion on one of the cell in SSRS 2010 while values in a group? -
i have 1 dataset with3 values currence, last value needs number. how can achieve while values in group? 
i need : iif(fields!booktotal.value ="binds", number, otherwice currency) can achieved format or formatnumber?
you in right track. need provide format strings.
=iif(fields!booktotal.value ="binds", "#,0;(#,0)", "c") you can generate format strings setting format in textbox properties , see puts or value of format property.

Comments
Post a Comment