Getting #Error value from ssrs reporting
Posted
by
deepa
on Stack Overflow
See other posts from Stack Overflow
or by deepa
Published on 2012-12-10T09:43:54Z
Indexed on
2012/12/10
11:06 UTC
Read the original article
Hit count: 151
sql-server-2008
I have created a dataset with fields "LastRunBuild" and "project" .The LastRunBuild field contain string of data seperated by commas according to each project. But Some Projects have no value in LastRunBuild field.When i am using this expression
" iif(Fields!LastRunBuild.Value=nothing,
nothing,Split(Fields!LastRunBuild.Value,",").GetValue(3)) "
a #Error value returns every time. Please reply...
© Stack Overflow or respective owner