Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)

  • RE: Comparing 2 Months

    Thank You Guys...much appreciated!!

  • RE: Comparing 2 Months

    All, here is a sample data set. So basically I am looking for members who are in the new months table and not in the previous months. They...

  • RE: Truncating String after first space

    David,

    Thanks for pointing me in the right direction.

    I got it to work with the following:

     

    select

    Case

    when CHARINDEX(' ', Drug_name) > 0

    then LEFT(Drug_name,CHARINDEX(' ', Drug_Name)-1) else Drug_Name

    end...

  • RE: Truncating String after first space

    David,

    Thanks for that query, it has me in pointed in the right direction but I ran the query and it seems like I am missing something.  It does'nt seem like...

  • RE: Rounding??

    I was trying to get a average of a person to hundreth place.  I was able to do it a 3 step process by putting into temp tables and I...

  • RE: Sum on a row

    Thanks guys, that helped!!

  • RE: Sum on a row

    Thanks Mark, that gave me the same results.  I might have to create a lookup table with a truncate drug name in order to total prescription and pay amount.

     

    Thanks for...

Viewing 7 posts - 1 through 7 (of 7 total)