dotnet
dotnet

Reputation: 11

SSRS : Wingdings check box not displayed in Chrome and Firefox

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

Answers (2)

Idayu
Idayu

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

Related Questions