Viewing 15 posts - 301 through 315 (of 541 total)
I can get it to run if I make the user account a domain admin (which I do not want to do).
What are the minimum permissions?
Phil.
January 27, 2009 at 8:51 am
Hi. You need to reference a field that exists within the report body (which can be hidden)i.e.
= First(ReportItems!YourField.Value)
Regards,
Phil.
January 27, 2009 at 8:14 am
Chris many thanks for your efforts, I will wrap my brain around your example and attempt to adopt this approach.
Many Thanks,
Phil.
January 25, 2009 at 7:52 am
Thanks Seth,I will read your post.
Many Thanks,
Phil.
January 25, 2009 at 2:42 am
Thanks Seth. Quite new to SQL. Should I simply script the tables that appear in any query (strip out constraints)? Regards the INSERT I have only ever done INSERT FROM...
January 24, 2009 at 10:06 am
I have resolved (I think) by adding additional grouping on the report.
grpQty (by quantity,ProductCode)
If anyone has an opinion on the code etc please feel free to educate me!
Thanks,
Phil.
January 24, 2009 at 3:36 am
Sankar just what I was after.
Many Thanks,
Phil.
January 24, 2009 at 3:18 am
Hi NULL, sorry for the delay in posting back.
I made the amendment but the query still returned multiple rows for the same product rather than count.
Thanks for all your efforts,...
January 21, 2009 at 3:38 pm
Adi thanks for the reply, I have re-attached as .xls.
I have modified code as follows:
SELECT
YEAR (so.EffectiveDate) AS Year,
MONTH (so.EffectiveDate)AS Month,
COUNT(so.SalesOrder)AS NumberOfQuotes,
SUM (si.CurItemValue) AS OrderTotal
FROM SalesOrders so
INNER JOIN SalesOrderItems si...
January 18, 2009 at 7:27 am
Thanks guys. I will need to check with the app vender.
It has come to light that I may be able to get what I am after by extracting from...
January 13, 2009 at 2:08 pm
NULL I will give that a try then update.
Many Thanks,
Phil.
January 13, 2009 at 1:41 pm
Hi Ramesh. Having reveiwed the orders from within the existing system it came to light that what I thought was the last OrderId was not in fact the case, they...
January 13, 2009 at 8:05 am
I have run the following query (small sample of output attached).
SELECT ProductId
,COUNT(1) OrderCount
,CASE WHEN COUNT(1) = 1 THEN SUM(MAN)/NULLIF(MANCount,0) ELSE AVG(MAN) END MAN
,CASE WHEN...
January 11, 2009 at 4:10 pm
Viewing 15 posts - 301 through 315 (of 541 total)