Forum Replies Created

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

  • RE: Simple query for the Months of a year

    Yes, it is for reporting services.

    ~ iklektic

  • RE: Simple query for the Months of a year

    Thanks! How do I add numeric values to this now?

  • RE: Simple query for the Months of a year

    To clarify;

    a list that will look like this:

    January 1

    February 2

    ...

  • RE: Filtering Results

    Thank you so much for your help! I got some good results from this query. I really appreciate your help and explanations. I have learned a lot!

  • RE: Filtering Results

    Extremely useful tool! Thank you!!

    The complete code I have for this query so far is:

    DECLARE @StartDate datetime, @EndDate datetime

    SELECT @StartDate = DATEADD(MONTH, -6, GETDATE()), @EndDate = GETDATE()

    SELECT MAX(Customer.CustomerID) AS...

  • RE: Filtering Results

    So the CTE doesn't need to have the entire query on there correct? Only the table(s) that are needed to establish the date range?

    The query is somewhat lengthy....

  • RE: Filtering Results

    Ok, so I'm guessing that "CTE" represents the string below (and CTE means Concatenate?):

    WITH indaterange AS )

    SELECT customerID, categoryID from contactcategory WHERE (dbo.dateonly(contactOn) between DATEADD(MONTH, -6, dbo.dateonly(GETDATE()))...

  • RE: Display results even when there are none.

    Thank you Mr Jones, for your response, I used the asterisk to help focus on the FROM information. I can see how that was misleading, the data I have in...

  • RE: Display results even when there are none.

    Thank you for your response, I had tried the right outer join as well, but that didn't return the desired results.

  • RE: Counting the number of Characters in a cell (SSRS)

    I was actually hoping to get the count from the query side:

    SELECT COUNT(characters(table1)) as totalCharacters... or whatever it is supposed to be!

  • RE: html tag

    YOU ROCK!!! Am using 2005 so that should work!!

  • RE: html tag

    Thank you!

    I tried that query but when I ran it... I got the 'completed' statement instead of an actual result?

    On a separate note, is there a way to return...

  • RE: html tag

    This solution is exactly what I need! Thank you!

    I tried the php route and didn't get far at all...

    Thank you for your expertise!

  • RE: html tag

    ... and another thing about the html code.

    What I meant was that when I put in the query return this "</LI><LI>", the actual result I got was: .</li><li>... which didn't...

  • RE: html tag

    Thank you for the response!

    What I am trying to accomplish with that query is create an html list for an email blast that I need to send out...

    So......

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