Viewing 15 posts - 2,821 through 2,835 (of 11,678 total)
What exactly do you mean with the "holding" table?
June 5, 2014 at 4:48 am
Do you filter out any data in the process?
June 5, 2014 at 4:39 am
nkweke (6/5/2014)
Thanks again Koen, I am new here and still trying to grasp this sql stuff. Your suggestions are noted.
I added the Group By and it pops up another error:
Msg...
June 5, 2014 at 3:51 am
deeby (6/5/2014)
For the benefit of other newbies - that otherwise very useful article tells you to set up some variables like
ZippedFiles: @[User::DirectoryToZip] + “ZIPPED\\”
Those variables need...
June 5, 2014 at 3:34 am
Interesting and detailed article, thanks.
June 5, 2014 at 3:21 am
The error is pretty straight forward:
you need to add a group by clause.
DECLARE @Amount MONEY;
DECLARE @totAmn MONEY;
SELECT ISNULL(SUM(p.price*s.quantity)+ s.shippingcost,0)
FROMtbl_shoppingcarts
INNER JOINtbl_productp ON s.productid =p.productid
WHERE s.cartid =@cartid
GROUP BY s.shippingcost;
Try to format...
June 5, 2014 at 3:18 am
venkat5677 (6/5/2014)
Can you please let me know where I can turn off options to consider 1 as successThanks In Advance,
Venkat
You should set SuccessValue to 1.
June 5, 2014 at 2:58 am
When I execute your original statement, I get an error saying ID cannot be in the SELECT list because of the aggregation functions and there is no gruop by.
So I...
June 5, 2014 at 2:04 am
I have to ask the obvious:
can't you just join the two tables?
June 5, 2014 at 1:48 am
Aside from the fact that a pie chart is a horrible visualization that is easily misinterpreted, you can solve your issue by creating a matrix with country in the columns....
June 5, 2014 at 12:54 am
Are you going from the main report to the child report using drillthrough?
I have the same set-up here in SharePoint 2013 and I have no issues with the parameter prompts.
June 5, 2014 at 12:51 am
Did you put the property EvaluateAsExpression to true on the variables?
June 5, 2014 at 12:49 am
Viewing 15 posts - 2,821 through 2,835 (of 11,678 total)