Viewing 15 posts - 1 through 15 (of 58 total)
Thank you everyone for your responses.
I actually worked it out as follows.
In the report grouping I put in
=Switch(DatePart("ww",LoadDate) = 1,1)
and so forth, up to 52.
I know you're probably laughing,...
October 12, 2010 at 8:41 am
Daniel Bowlin (9/22/2010)
September 22, 2010 at 1:55 pm
Luke L (9/21/2010)
tsmith-960032 (9/21/2010)
Luke L (9/21/2010)
Why doesn't it matter which in records 1-2? If it doesn't matter why return that column at all?-Luke.
Ok,
ColumnA is a shipping number.
Each...
September 22, 2010 at 8:25 am
Luke L (9/21/2010)
Why doesn't it matter which in records 1-2? If it doesn't matter why return that column at all?-Luke.
Ok,
ColumnA is a shipping number.
Each shipping number may...
September 21, 2010 at 12:37 pm
Luke L (9/21/2010)
If you're doing everything at rendering just pull everything, then group by columnA, add your calculations on columns b,c or whatnot. ...
September 21, 2010 at 12:24 pm
Luke L (9/21/2010)
You need to figure out if you'll...
September 21, 2010 at 11:48 am
Scott Douglas (9/14/2010)
September 15, 2010 at 12:12 pm
cliff.cotterill (9/15/2010)
Name_Yr__Qtr_____Mon___________________Amt
Joe _____________Jan_____xxxx_xxxx_xxxxx_$100
Joe _____________Feb_____xxxx_xxxx_xxxxx_$100
Joe _____________Mar_____xxxx_xxxx_xxxxx_$100
Joe ______Q1___________________________$300
Joe _____________Apr_____xxxx_xxxx_xxxxx_$200
Joe _____________May____xxxx_xxxx_xxxxx_$200
Joe _____________Jun_____xxxx_xxxx_xxxxx_$200
Joe ______Q2___________________________$600
Joe...
September 15, 2010 at 12:05 pm
You can even have 3 visible parameters.
@FromDate
@ToDate
@DaysOut
and allow blank values. Then, in your query, you can check which parameters the user filled in
If Len(Ltrim(RTrim(@ToDate))) = 0
Begin
xxxxxx
End
Else
If... you get the...
September 15, 2010 at 11:14 am
chris.king (9/14/2010)
I also need to be able to show periods of less than 18 weeks so a start and end date are required to allow...
September 15, 2010 at 11:10 am
Stuart Davies (9/15/2010)
The essence of the problem is that I can't see any databases on the server when trying to...
September 15, 2010 at 11:01 am
Report parameters are global, and thus can be passed back to any stored procedure, as long as the parameter name(s) match the parameter name that the stored procedure is expecting.
Also,...
September 15, 2010 at 10:41 am
erdem1973 (9/15/2010)
No,I am trying directly via SSRS
You mean running the report off the server???
September 15, 2010 at 10:02 am
I am not sure I understand what you are trying to do, but, I hope this will help.
Since you are using an sp, and the parameters are set up, they...
September 15, 2010 at 10:01 am
You can select multiple, or single cells to set the format properties as Luke says above.
Examples of what you may put in the format field are :
c2 (currency, 2 decimal...
September 15, 2010 at 9:52 am
Viewing 15 posts - 1 through 15 (of 58 total)