August 21, 2009 at 7:44 am
Please assist How can I get a between expression right in SSRS conditiona format:
I tried the one below but I'm not winning:
IIF(Fields!ID4.Value IS Fields!Three.Value and Fields!Two.Value,"YELLOW","BLACK")
August 23, 2009 at 5:26 pm
Do you mean:
IIF(Fields!ID4.Value = Fields!Three.Value and Fields!ID4.Value = Fields!Two.Value,"YELLOW","BLACK")
August 24, 2009 at 1:35 am
Yes, But it is not working properly. It takes the second color.
Second problem: How do I shade the cell instead of the text?
August 24, 2009 at 2:18 am
pitso.maceke (8/24/2009)
Second problem: How do I shade the cell instead of the text?
With the Background property
August 24, 2009 at 2:33 am
Thanks , I learned I lot
August 24, 2009 at 8:31 am
Michelle Kraushaar (8/23/2009)
Do you mean:IIF(Fields!ID4.Value = Fields!Three.Value and Fields!ID4.Value = Fields!Two.Value,"YELLOW","BLACK")
pitso.maceke (8/24/2009)
Yes, But it is not working properly. It takes the second color.
Yes, but there is an obvious error in the above formula. Did you even look at what they wrote before plugging it into your report?
Drew
J. Drew Allen
Business Intelligence Analyst
Philadelphia, PA
August 25, 2009 at 12:52 am
I can't identify the error, Please assist
August 25, 2009 at 8:30 am
Have a look at this article
August 25, 2009 at 8:34 am
...or this
Viewing 9 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic. Login to reply