views:

19

answers:

0

I'm using ReportViewer at my work and I've run into a problem I can't solve. This particular report is one that has a section that's visibility is determined by checking a field:

=IIf(Fields!TRREQUEST_BK_STATUS_CD.Value.ToString() <> "DELETE", True, False)

This isn't where the problem is happening though. Above this section, there are two sets of textboxes. One that uses the TRREQUEST_BK_STATUS_CD and displays either DELETE or APPRVD, and another set that displays a book ID. The weird thing that's happening, is that which ever set of textboxes are on the right hand side get shifted to the left a few notches on an APPRVD report. On the DELETE reports it remains where it's supposed to be.

In all the other reports, we haven't had any problems like this. That's why I'm assuming it's some weird bug with the IIf statement. Any ideas?