Forum Discussion
M_nwadibia
Resolver III
3 years agoExpression to replace a value in ssrs
Please I need an expression to replace 9,999 in column 1 in SSRS. First column is named column1
- 3 years ago
This is possible to do. You just need to right click on the field in your tablix control and then change the expression from something like:
=Fields!ID.Value
to something like this:
=iif(Fields!ID.Value=9999,"Unknown",Fields!ID.Value)
This is using an example column called "ID" you would need to change this based on the field name in your dataset.
d_gosbell
Super User
3 years agoThis is possible to do. You just need to right click on the field in your tablix control and then change the expression from something like:
=Fields!ID.Value
to something like this:
=iif(Fields!ID.Value=9999,"Unknown",Fields!ID.Value)
This is using an example column called "ID" you would need to change this based on the field name in your dataset.