I am using CR 10 and I am using a View out of SQL Server.
I pass in one parameter into the crystal report.
I get back 5 rows of data.
I have 4 fields in the view: ID, Value1, Value2, Value3.
I display ID, Value1.
What I would like to do is If Value3 is populated,
Don't display row if ID = Value3 OR ID = Value2.
Eg.) I get 5 rows of data like:
(1, First, , )
(2, Second, , )
(3, Third, 3, )
(4, Fourth, , 4)
(5, Fifth, , )
The results should show
(1, First, , )
(2, Second, , )
(5, Fifth, , )
Does anyone know how I can do this?
Thanks
I pass in one parameter into the crystal report.
I get back 5 rows of data.
I have 4 fields in the view: ID, Value1, Value2, Value3.
I display ID, Value1.
What I would like to do is If Value3 is populated,
Don't display row if ID = Value3 OR ID = Value2.
Eg.) I get 5 rows of data like:
(1, First, , )
(2, Second, , )
(3, Third, 3, )
(4, Fourth, , 4)
(5, Fifth, , )
The results should show
(1, First, , )
(2, Second, , )
(5, Fifth, , )
Does anyone know how I can do this?
Thanks