Forum Replies Created

Viewing 15 posts - 2,386 through 2,400 (of 3,500 total)

  • RE: Parse String By Column Position

    Terry,

    before you do much of anything, I would recommend reading Jeff Moden's article[/url] (and borrow his code) for his DelimitedSplit8K TVF. It will split your data up really easily...

    Here's...

  • RE: How to do Grouping on Multiple Rows in SSRS

    It's better to include the entire problem in your description, as well as any SQL necessary to reproduce your setup/problem. If you give people enough information to easily answer...

  • RE: ssrs date format

    One option might be to add a calculated field that returns just the date (no time) to your dataset and then use that to filter your dates.

    =DateValue(Fields!orderdate.Value)

  • RE: How to group on Matrix column which has two data fields

    Any chance you could post some data (it can be fake... just representative) in the form of either a CREATE TABLE and INSERT scripts or a union query....

    SELECT TxDate, Fraction,...

  • RE: How to get the source query?

    I guess you need to explain the context in which you are doing this. Why is creating a stored procedure and executing it not an option? Seems silly...

  • RE: How to get the source query?

    Googlefu turned up this:

    select

    Catalog.name,

    cat1.Name datasource

    from

    Catalog

    join DataSource

    on Catalog.ItemID = DataSource.ItemID

    join Catalog cat1

    on DataSource.Link...

  • RE: Delele condition

    So how do you identify the records you want to save?

    TOP 50 (with a cross apply).

    then delete the rest... so either NOT IN ... or outer join...

  • RE: Sql Query

    Can't help without understanding the question. What does this mean?

    "Need to put this into single SQL statement without update command."

    What is the query supposed to do? Is it supposed...

  • RE: How to get the source query?

    If you open the report as an XML file, you'll see the <DataSets> section with <Query> delimiter. So you'd just use XQuery to grab the contents of that part.

  • RE: Cumulative values along rows

    Now that I've finally gotten this to work, this is how I did it. (I'm using 2012 but compatibility is 2008).

    In all honesty, since I completely forgot how to...

  • RE: How to update a boolean report parameter based on a dataset's results

    make the boolean parameters calculated? (based on whatever is in the other dataset(s))

  • RE: Report Builder Role

    You can use something like this:

    Note: DummyMVParam is a multi-value parameter in my report.

    so this is what my test is doing:

    If there are less than 4 values selected from the...

  • RE: Need to Show Item Only Once in a List

    without sample data, it's hard to tell, but my guess is that you're missing a WHERE clause...

    SELECT PartNumber, SerialNumber, MAX(InspectionDate) AS LastInspection

    FROM MyTable

    WHERE PartNumber IS NOT NULL

    GROUP BY PartNumber, SerialNumber

    ORDER...

  • RE: Need to Show Item Only Once in a List

    like falling down...

    SELECT PartNumber, SerialNumber, MAX(InspectionDate) AS LastInspection

    FROM MyTable

    GROUP BY PartNumber, SerialNumber

    ORDER BY PartNumber, SerialNumber;

  • RE: crystal report cannot select into temp table

    Okay, so humor everybody...

    post the entire stored procedure... pin the tail on the donkey isn't our favorite game.

Viewing 15 posts - 2,386 through 2,400 (of 3,500 total)