Forum Replies Created

Viewing 15 posts - 691 through 705 (of 1,248 total)

  • RE: How can I form an IIF in my Matrix report in SSRS 2014? See message body.

    =IIF(Fields!Category.Value = "Actual" AND Fields!Periodic.Value <5,"red","black")

    Maybe with

    =IIF(Fields!Category.Value < Fields!Periodic.Value ,"red","black")

    ?

    If actual is less than budgeted I would think that is a good thing. I would highlight it...

    ----------------------------------------------------

  • RE: Removing Shared Data Source

    If you are seeing the new data source under the data sources folder, but the preview still complains of a reference to the old source, try clicking the save button....

    ----------------------------------------------------

  • RE: Report with 2800 images

    Get me? (11/24/2015)


    How large is each image file? Even if you scale them in reporting services it just uses html attributes or CSS for scaling but doesn't shrink the...

    ----------------------------------------------------

  • RE: How to know if data is committed after an insert

    Just curious, to move on to the next step... the default behavior is for the current job step to complete reporting success. Are these steps you refer to in the...

    ----------------------------------------------------

  • RE: Transfer Database Task

    The log message that you posted are from the job itself and not the SSIS Package. Do you have, if not you should, logging enabled within the SSIS package? If...

    ----------------------------------------------------

  • RE: change the executing machine

    No matter how the package is invoked or from where, it will run on the machine it is saved in. What exactly are you aiming for ? The fact that...

    ----------------------------------------------------

  • RE: Check for duplicates before inserting

    Ok thank you Jack, I shall read up on that article

    ----------------------------------------------------

  • RE: Check for duplicates before inserting

    Jack Corbett (11/24/2015)


    Yes that is how it should work. The first row is inserted successfully because it won't violate the PK and the next row with the...

    ----------------------------------------------------

  • RE: Check for duplicates before inserting

    I'm with Jack on this one. A duplicate to me is where all column values are equal, if you mean duplicate key fields... then the issue is which is the...

    ----------------------------------------------------

  • RE: Getting previous month data when new year starts

    You can have your main query in the form of ::

    SELECT /* your columns */

    FROMyour table

    WHEREdateField>= @startDate and dateField < @endDate

    Set startDate ,@endDate default to the value of...

    ----------------------------------------------------

  • RE: Year over year reports

    Inside of the SSRS development environment you can create a data set that has this information, that is, the calendar months that Jeff Mentioned. You want that table/dataset to...

    ----------------------------------------------------

  • RE: How to restrict user to select only few values in multi valued parameter

    I've seen this issue when the report itself dumps tons of possible values for the parameter. Can the values be grouped somehow and chosen through a cascading relationship between the...

    ----------------------------------------------------

  • RE: Removing Shared Data Source

    The purpose of a shared/common data source is that when you need to redirect to a new database, you only need to change the configuration at one place rather than...

    ----------------------------------------------------

  • RE: ssrs-An error has occurred during report processing.

    Even if it is a valid user at the database, do you have the select permission on the objects that you need or are you calling a stored procedure that...

    ----------------------------------------------------

  • RE: ssrs-An error has occurred during report processing.

    You need to make sure that the credential configured at the data connection is valid for the database you are getting on your new server. Is this a SQL login...

    ----------------------------------------------------

Viewing 15 posts - 691 through 705 (of 1,248 total)