Simple formatting question(s)

  • I would like to force a break in a field so that rather than read July 2006 it reads

    July

    2006

    I tried : =IIF(Fields!Q.Value = 1,"July" & CHR(10) & Fields!Y.Value.ToString, "")

    But no dice.

    I also noticed that the borders I add to fields display so differently from the preview and the actuall delopyment. Is there a way to see what the report looks like without delopying it?

    Thanks

    D

  • This was removed by the editor as SPAM

  • This might work:

    =IIF(Fields!Q.Value = 1,"July" & vbcrlf & Fields!Y.Value.ToString, "")

    Remember, its vb syntax you should be using.

    ******************
    Dinakar Nethi
    Life is short. Enjoy it.
    ******************

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply