Forum Replies Created

Viewing 15 posts - 1,906 through 1,920 (of 3,482 total)

  • RE: How to filter fur multiple facilities

    how would I query just those people who are assigned to just the AMB facility? --- kinda contradicts your subject question... but anyway...

    If you're filtering for a single value, you...

  • RE: MS Access

    I don't know of one. Shouldn't be very hard to write. It might be something like:

    Device--(M,1)--IPAddress

    and then you'd have location, deviceType, etc about each device. Not a...

  • RE: MS Access

    tracking net IP addresses how? are you one of the poor souls using static IP?

    Could you be more specific? Sounds like you need a BYTE for each octet, and then...

  • RE: split data into two columns

    Use DelimitedSplit8K[/url] and append the result to a final table?

  • RE: ssrs 2008 report to display no rows message

    If there is no data in any of the left join columns, I do not want to display data on the report.

    Then why not use an inner join?

  • RE: Report Builder 1.0

    I was looking around to see if I could answer your question, but what I found is that v1 may not work with SSRS 2014.

    Check out this article.

  • RE: repeated graph using multiple sources

    Damian,

    can someone create a stored procedure that brings all the data together into one dataset? I suppose you could write a stored procedure that creates a temporary table and...

  • RE: Sending SSRS report to each and every agent for their next day schedule every day at 4 pm

    Sounds like you could use a subscription to do this. That will handle sending the reports to each user. If you're not using Enterprise, you can use Jason Selburg's...

  • RE: t-sql 2012 date 1900-01-01

    You can't store "spaces" in a date. Period. Dates are stored as numbers in T-SQL, and you can't store spaces in a numeric field.

  • RE: Get Max Date for Group and it's Associated Record ID

    For a newb, nice job posting!

    This should do it... you might want to play with ROW_NUMBER() for a while... super handy once you figure out how it works.

    SELECT y.Class

    ,...

  • RE: Rows duplicating for each person

    "I need it to filter on the latest version of each of the 3 documents the person has to sign."

    but there's no MAX(Date) anywhere... how are you returning the latest...

  • RE: SSRS Expressions background color

    the usual way of dealing with a series of IIF statements is nesting them... Here's the barebones structure (which you've sorted out)

    =IIF(<test>,<true part>,<false part>)

    In your case, I think you...

  • RE: Using Condition in Select

    You don't really have a new column for each day of the month, do you? If you do, that's the source of your problem.

    A little normalization is a beautiful...

  • RE: How do you refresh the query used for a report?

    SSRS and Access reports are alike in that respect - they have their own sorting and grouping, so they'll override the sorting in the dataset. If you want something sorted...

  • RE: SQL Query Question

    Sounds like a homework assignment. what did you try?

    Also, if you post your question like this, you're more likely to get answers...

    Nice runnable code to recreate your problem....

    CREATE TABLE...

Viewing 15 posts - 1,906 through 1,920 (of 3,482 total)