all groups > sql server reporting services > august 2005 >
You're in the

sql server reporting services

group:

iif help please...


iif help please... trint
8/1/2005 11:05:42 AM
sql server reporting services:
I want textbox2 value to NOT show if textbox1 has the word "***mail***"
<---just like that between the quotes.
Any help is appreciated.
Thanks,
Trint
RE: iif help please... Jeff
8/1/2005 12:11:16 PM
Trint,

Right click on textbox2, go to select properties, click the advanced button,
then select the visibility tab. click the 'Expression' radio button, then
put this text in the text box for the expression:

=IIF(Fields!FieldForTextBox1.Value.ToString() = "***mail***", False, True)

Fields!FieldForTextBox1 is whatever field from your datasource is populating
textbox1.

That sound do it for you.

[quoted text, click to view]
Re: iif help please... trint
8/1/2005 12:32:36 PM
That is it Jeff!
Thanks!
Trint
Re: iif help please... Jeff
8/1/2005 12:51:04 PM
no problem.

[quoted text, click to view]
AddThis Social Bookmark Button