up vote 5 down vote favorite
share [g+] share [fb]

I'm a newcomer to using Microsoft Reporting (RDLC) and I'm trying to display a table with a checkbox inside of it. The data I have is stored in bit fashion:

Example Data

I want this data to display on the report like this:

alt text

I can get the data to display in a normal table without issue, but when I do, the bit values are formatted as "true" or "false". Does anyone know of a way to do this? I have googled around and found reference to other people with the same issue but no solutions. I am using a Report Viewer control to display the report in an ASP.NET website written in C#.

link|improve this question

40% accept rate
Good Questions. But till now You Not get Ans?. – Sagotharan Jul 30 '11 at 11:03
feedback

4 Answers

Since the xhydra link in the other answer is dead, I'm going to add this answer suggested here by user nyashaC.

= iif( Fields!absent.Value , Chr(254), Chr(168))

AND THEN change the font to wingdings for that particular display field (NOT FOR THE WHOLE REPORT!!!)

link|improve this answer
feedback

Could you do something simple like this article shows?:

http://www.xhydra.com/dotnet/displaying-checkboxes-in-microsoft-reports.html

link|improve this answer
Cory, That's an interesting solution, but I'm reluctant to use WingDings in a web application. I guess I could use IIf to control the visibility of an checkbox image instead. All of this seems like a hack though. – VanOrman Jun 12 '09 at 19:18
Controlling the visibility of a checkbox image was the other workaround I found but this one was simpler. Apparently (though I haven't had experience with it) there's some extra crap you need to configure in your report to account for external images. – Cory Jun 12 '09 at 19:56
2  
The link in the answer is dead... – jbandi Jan 22 '10 at 8:49
So you down-voted it 7 months later? It solved the problem the asker had, no need to bash. – Cory Jan 23 '10 at 6:15
Sorry this was not personal. But the answer is worth nothing today... the question is if the votes should represent the current value or if they should be a historical documentation... – jbandi Jan 26 '10 at 17:16
show 1 more comment
feedback

I use ChrW(8730) on default font (Arial)

Here my code:

="[" + IIf(First(Fields!MyBoolean.Value) = True, ChrW(8730), " ") + "]" + " MyCheckbox description"

link|improve this answer
feedback

I had a similar situation, and what I did was to get check box checked and unchecked jpg images. Then I called unchecked image as default image in my table, and based on the boolean value of the concerned field in the dataset, I swaped the checkbox unchecked image with the checked image.

Niraj

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.