Viewing 15 posts - 1 through 15 (of 32 total)
thanks Lynn. this solved my issue and I did not make a change to the function
August 9, 2016 at 11:47 am
we would actually want to have multiple rows for this and not 1 row. Maybe a Union to load both the product and employee information into 1 column.
April 7, 2016 at 8:04 am
Below is the query used to generate these results.
SELECT
p.proj_no,
p.proj_status,
p.proj_bill_with_parent,
p.proj_desc,
pbt.emp_no + ' ' + rtrim(e.emp_first_name) + ' ' + e.emp_last_name as 'Emp#/Description',
pm.prod_no + ' ' + prod.product_desc as 'Prod#/Description'
FROM dbo.project...
April 7, 2016 at 6:42 am
still running into issues here. So if I leave the MAX function infront of my Case statement which contains the sum function for the values I need to total...
July 30, 2015 at 8:16 am
Not sure I am following what you are asking. My current output would look something like this.
Country_code Local_client_code Local_client_name 2015Rev...
July 30, 2015 at 7:41 am
the temp table was the route I took to get the results. Thanks everyone for you help.
June 9, 2015 at 8:20 am
thanks for the syntax, but when I run this in our environment, I still have the sales amount repeated for all the months where there is revenue.
June 9, 2015 at 6:48 am
that will work for some of the situations, but not always as there could be situations where there are no revenue reported in the month of the sale
June 8, 2015 at 2:08 pm
the attached file has 2 tabs. The first tab is the current result set. The 2nd tab is what we are trying to get to. You will...
June 8, 2015 at 1:53 pm
Also i need to clarify that the percent calculation needs to multiple against the sum of the count of employees by benefit. So for example Benid 1 may have...
August 11, 2014 at 8:47 am
I believe that will get me the correct answer now I just need to get the full percentage so I should just multiple by 100 correct?
August 11, 2014 at 8:37 am
This seems fairly complex. Couldnt this be completed by a Union query?
March 11, 2014 at 12:45 pm
installing the SP1 solved my issue. Thanks:-D
February 27, 2014 at 11:13 am
No it has never worked. This is a new install of the program on my machine
February 27, 2014 at 9:31 am
Viewing 15 posts - 1 through 15 (of 32 total)