Forum Replies Created

Viewing 15 posts - 16 through 30 (of 289 total)

  • RE: PLSQL Business Hours

    T-SQL answer since this is a T-SQL forum.

    --Calendar table

    CREATE TABLE #open_days ([open] DATETIME);

    INSERT INTO #open_days VALUES ('2016-08-26 00:00:00'), ('2016-08-29 00:00:00');

    --Tally table

    CREATE TABLE #numbers (n INT);

    INSERT INTO #numbers SELECT TOP 100...

  • RE: PLSQL Business Hours

    This is a T-SQL forum so you'd probably get better answers in an Oracle forum. I've had a bash in Postgres since I believe the date functions are similar...

  • RE: Custom Code

    Hi Frank,

    Could this not be achieved using a RunningValue aggregation instead of custom code?

    If it's in the group footer you can just add the summed value each time e.g.

    =RunningValue(Sum(Fields!CO.Value), Sum,...

  • RE: Formatting in SSRS

    This is to do with the interval min and max you set on your axis, the type it is expecting is a DateTime and when you enter 00:00:00 and omit...

  • RE: Formatting in SSRS

    Use the TimeSerial as the value for your Y series. You're not formatting, you're converting the Integer to a DateTime. The chart will interpret the DateTime as a...

  • RE: Formatting in SSRS

    Hang on, I think I see what you are getting at.

    In a scatter plot the y-axis labels will always be determined by the value, you cannot set your labels as...

  • RE: Formatting in SSRS

    The custom format should just be a string e.g. mm:ss

    You can adjust the intervals via the axis options.

  • RE: Formatting in SSRS

    Even better - use the TimeSerial (it does the same as above) function and format the datetime it returns!

    I.e. =TimeSerial(0,0,Fields!Seconds.Value)

    You can pass any number of seconds in e.g. 120 and...

  • RE: Formatting in SSRS

    You could convert it to an actual datetime from the year dot (01/01/0001 00:00) since you are only interested in the minutes and seconds parts.

    I.e. =DateAdd(DateInterval.Second, 30, System.DateTime.MinValue)

    Where 30 would...

  • RE: How to get unique parameter values from report dataset

    Hi Nineiron,

    Not really.

    You can use your dataset to populate available values for a parameter which is set to filter a report item, e.g. a tablix.

    This will populate the...

  • RE: Two charts misaligned

    SSRS does this to prevent overlapping objects when it cannot predetermine the size, e.g. how many rows a table will have.

    If you want to lock items relative to eachother on...

  • RE: ssrs 2016 can I use previously built data sources and datasets?

    Hi Rob,

    SSDT works with a project model and does not maintain an active link to the report server. This means all the objects, dataset etc have to be stored...

  • RE: Joining and Pivoting Data Question

    Design issues aside when you post these sorts of questions you should post the SQL to create the sample data - I've done it here, I've changed the dates slightly...

  • RE: SSRS display sum for sub category group by value.

    Charts are like a matrix so the category and series groups in charts are just that: Groups. Therefore you can use them as a scope for aggregations.

    Change your chart...

  • RE: Backup Up Encryption Key File - How to verify password is working?

    Hi,

    You can backup the encryption key again through the Reporting Services Configuration Manager. You don't need to go through any of the other configuration steps.

    Or you can use the...

Viewing 15 posts - 16 through 30 (of 289 total)