June 1, 2012 at 10:29 am
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
June 1, 2012 at 10:35 am
riya_dave (6/1/2012)
hii 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
June 1, 2012 at 1:00 pm
thanks
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply