I have a requirement where I want to format a field that is returned from the database based on what it contains. Specifically, if the value of the field is “Other 3”, I need to display the “Other” in 12pt and the “3” in 8pt.
Any help is greatly appreciated.
You could reference the field in two textboxes. Use
Mid&IndexOfto select either side of the field for each textbox. Then just set the fonts of each textbox to 12pt and 8pt.If it is mandatory that entire string exist in one textbox, (and you’re using SSRS 2008) you can use placeholders as described here.