Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

in rdlc i want to compare int like

 if(expression ==1)
    {

    }
    if(expression ==2)
    {
    }

work on vs05 Window C#

share|improve this question

2 Answers

Rather than using nested IIF statements I prefer the Switch statement.

From the MSDN...

=Switch(
    Fields!PctComplete.Value >= 10, "Green", 
    Fields!PctComplete.Value >= 1, "Blue", 
    Fields!PctComplete.Value = 1, "Yellow", 
    Fields!PctComplete.Value <= 0, "Red"
    )

Hope it helps :)

share|improve this answer
Thanks it's work Now i have another problem hope you help me ... I have three type board LIKE:GOOD,REMOVED,NOTFOUND.....i want a report on rdlc that show me Board type amount like below Thana Good Removed NotFound A 5 2 4 B 4 1 0 how can i do that – Shamim Jun 16 '09 at 7:42
I'm not totally sure what you mean? Can you rephrase the the question in any way, your example has lost its formatting because its a comment. – Chalkey Jun 16 '09 at 7:53

You will have to nest IIF statements like this:

 = IIF (expression = 1, "Is 1", IIF (expression = 2, "Is 2"))
share|improve this answer
thannks now if i want to compare string then? what i do.... like int Total=0 if(expression=="Good") then TotalIncrease – Shamim Jun 16 '09 at 7:24
You cant have variables in that sense. You would nest the 'IIF' within a SUM or some other kind of aggregate function... =Sum(IIF(expression = "Good", 1, 0)). Something along those lines. – Chalkey Jun 21 '09 at 16:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.