Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Analysis Server and Reporting Services (2005)
 Text field visibility properties

Author  Topic 

CoachBarker
Posting Yak Master

170 Posts

Posted - 2009-02-21 : 09:00:46
I have 3 text fields, text1, text2 and text3. If text1 - text2 = text3 and text3 is 0 or less text3 should not be visible. How can this be done? And yes all fields are numbers.

Thanks for the help
CoachBarker

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2009-02-22 : 01:16:36
just make hidden property of text3 cell as

=IIF((Fields!text1.value - Fields!text2.value)>0,False,True)
Go to Top of Page
   

- Advertisement -