Reputation: 11
I am trying to display the checkbox on the SSRS report based on the value of a Boolean field wingdings font. My expression looks like this.
=IIF(Fields!ColorCheck.Value,chr(254),chr(168))
This works fine in IE but not in Chrome or Firefox.
I tried the Unicode alternate for this (Arial Unicode MS Font)
=iif(Fields!ColorCheck.Value,chr(0252),chr(0251))
I get the error "Procedure Call or Argument is not valid"
Is there any workaround for this. any suggestion is greatly appreciated.
Upvotes: 1
Views: 2416
Reputation: 11
You should be able to add a checkbox using the following example.
=IIF(Fields!ColorCheck.Value,chr(254),o)
You may refer to this link
Upvotes: 1
Reputation: 1
Use Insert -> Indicator, more information https://www.toadworld.com/platforms/sql-server/b/weblog/archive/2012/08/04/displaying-checkboxes-in-an-ssrs-report
Upvotes: 0