display hide column values

  • hi

    i need to hide some value in 1 column.

    example.

    i have 1 field

    account index

    us1 0

    us1 1

    us1 1

    now i have 1 field in my dataset which has index either 1 or 0

    now i want to show account when only index is 0 ,how to do that.it should not disable whole row,just that account

  • riya_dave (6/1/2012)


    hi

    i need to hide some value in 1 column.

    example.

    i have 1 field

    account index

    us1 0

    us1 1

    us1 1

    now i have 1 field in my dataset which has index either 1 or 0

    now i want to show account when only index is 0 ,how to do that.it should not disable whole row,just that account

    =iif(Fields!FieldInMyDataSet.Value = 0, Fields!FieldInMyDataSet.Value, Nothing)

    replace "FieldInMyDataSet" with your actual field name

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • thanks

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

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