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.
Author |
Topic |
renfuns@yahoo.co.in
Starting Member
1 Post |
Posted - 2009-01-16 : 09:33:28
|
hi guys,please help me in getting this done.i want to hide chart title ven there is no data in the chart- but the is nothing- = Nothing- len (fields!xyz.value) = 0- etcnothing works and gives me n error (#Error) when the fields!xyz.value contains a null value.Any one can please help me. |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2009-01-16 : 11:35:03
|
try this too=IIF(Isnothing(fields!xyz.value),True,False) |
 |
|
|
|
|