Forum Replies Created

Viewing 15 posts - 91 through 105 (of 165 total)

  • RE: Dynamically render color AND decoration of BOLD

    Sorry, I am sure you've guessed, but BLACK is the final ELSE part of the expression.

    Also, make sure the case is correct for the colours, not all uppercase like I've...

  • RE: Dynamically render color AND decoration of BOLD

    Yes, and these work basically the same way as an excel IF...THEN...IF...THEN..ELSE statement.

    if the value is "Prod" I'd like to see it displayed BLUE, BOLD

    if the value is "QA"...

  • RE: Multi-Value parameter

    No, it's not defined anywhere.....

    HOWEVER...

    It might be that your parameter is a number, and therefore the error is that you are trying to join numbers and strings.

    If this is the...

  • RE: Multi-Value parameter

    where are you writing the statement? is this in a control inside the report or is it in a dataset somewhere?

  • RE: Multi-Value parameter

    Sorry, but it DOES take .Value with the JOIN function, the thing you have to remove is the (0) part that is automatically added when you select the parameter name...

  • RE: Multi-Value parameter

    Use the following expression in your text box/cell/whatever:

    =JOIN(Parameters!ParameterName.Value,'; ')

    The last argument of this function '; ' is the one that will add the separator between each value, so you can...

  • RE: Dynamically render color AND decoration of BOLD

    Simple really, you already have the code to do it, just go to the Font Style area of the same properties and add the expression:

    =IIf(UCase(RTrim(Fields!EnvName.Value)) = UCase("Prod") ,"Bold", "Normal")

    Good luck,

  • RE: Not sure what to use Parameter/visibility toggleitem

    SELECT CLM_DOUT

    FROM All_Clients_Discount_Management_DEVON_ADV

    WHERE (@DateType='Week' AND (YEAR(CLM_DOUT) = YEAR(GETDATE())) AND (DATEPART(wk, CLM_DOUT) = DATEPART(wk, GETDATE()))=@DateNumber)

    OR (@DateType='Month' AND(MONTH(CLM_DOUT) = MONTH(GETDATE()))...

  • RE: Not sure what to use Parameter/visibility toggleitem

    OK, I think I understand what you are trying to achieve, I am guessing that you want the user to be able to input either the week, month or year...

  • RE: Not sure what to use Parameter/visibility toggleitem

    It really depends on how you are using your parameters inside the report or dataset. Normally what I would expect to see is one parameter only, and that parameter...

  • RE: Matrix Report Compare Values

    AHHHHHH !

    So now I understand what you mean.

    A question: Are there only two dates included on any row on this report (as I'm sure you know, the concept of...

  • RE: Matrix Report Compare Values

    Can you drop a small sample of the current output you're getting, I'm not sure I fully understand what you have at the moment. I certainly don't understand how...

  • RE: Dundas Charts

    OK, but the standard charting tool in BIDS does not give me the other functionality I need, which is why we use the awful piece of software called Dundas. ...

  • RE: Matrix Report Compare Values

    The Matrix is notorious for it's little tricks, but the way to do this is to right click on the heading of your second value column and select "Add Column"....

  • RE: Headers Not Repeating on New Page

    Well we both managed to learn something today, and you're right, quirky is certainly one word you could use for SSRS!!

Viewing 15 posts - 91 through 105 (of 165 total)