Click here to Skip to main content
15,886,137 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello,

I'm currently working on a SSRS report and, for governmental reasons, we need to have a block of text that following the logic below:

We declare that we are exporting the product 1 of type A - product 2 of type A - product 2 of type B.

The catch here is that only one of the 3 can be sent each time and the other 2 must have a strikethrough effect.

Example:
We declare that we are exporting the product 1 of type A - product 2 of type A - product 2 of type B.

I'm still researching it on MSDN and forums, but if anyone could lend a help I would appreciate it.

BTW: I was requested to keep the report formated as "plain text" instead of html tags, which makes the strike tag a no option.

Regards
Posted
Updated 5-Aug-14 2:51am
v2

1 solution

After a very long research on MSDN, I've found the answer at a proper place (codeProject)... Which should have actually been the first place to look :P

Based on "change font style in ssrs for some values" + trial and error I've performed the following steps:
1) Selected the desired part of the text.
2) Right clicked and choosing properties
3) Font
4) Expression button from effects
5) Applied =IIF(Fields!TT_ID.Value = 1, "Default", "LineThrough")
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900