Viewing 15 posts - 151 through 165 (of 172 total)
You should be able to shift-select all of the texboxes and set the background color property for all at one go.
November 25, 2011 at 4:48 pm
Not exactly sure what you are trying to accomplish. The screen shot shows a 2011 off to the right at the top of the report body.
If you want to...
November 25, 2011 at 4:31 pm
Add a row group to the table, group on the Company.
Click on Details menu arrow in the Row Groups area, select Add Group > Parent Group > select...
November 25, 2011 at 4:24 pm
isNull(sum(Really Long Select), 0)
or put the really long select result into a variable and do the same with the variable
November 21, 2011 at 3:48 pm
Agrrrrhhhh. I'm an idjit.
Need to pass 10pt, not just 10.
Derp.
November 17, 2011 at 6:18 pm
It will also happen if you try to open something developed in 2008 R2 with 2008 and vice versa. Different namespace.
November 17, 2011 at 2:32 pm
Add code to the Report:
Private bOddRow As Boolean
Function AlternateColor(ByVal OddColor As String, _
ByVal EvenColor As String, ByVal Toggle As...
November 17, 2011 at 2:27 pm
Pretty sure checkboxes typically represent multiple selection, whereas radio buttons allow for only one choice. With a boolean, you can only have one choice so checkboxes would be a...
November 3, 2011 at 6:28 pm
There is probably a more graceful way, but this will work:
--MAKE TEMP TABLE TO MIMIC YOUR TABLE VARIABLE
CREATE TABLE #snausages (customer_code INT, order_id INT, product_desc VARCHAR(25), order_product_quantity INT, [action] VARCHAR(25))
;
--ADD...
November 2, 2011 at 6:51 pm
With your WHERE:
WHERE
((CLREFER.ZIP=@ZIP)
AND (MWAPPTS.ADATE BETWEEN @FIRSTDATE AND @LASTDATE))
OR (MWAPPTS.ADATE BETWEEN @FIRSTDATE AND @LASTDATE)
Both statements are evaluated because of the OR, essentially negating the @Zip filter.
Need to do...
October 26, 2011 at 6:15 pm
Try something like this - I wasn't able to test without setting up data, but this should be close:
SELECT
Field=F.Comments
--find starting location: first colon + 1
,StartAt=CHARINDEX( ':',F.Comments) + 1
--find ending...
October 24, 2011 at 5:42 pm
I’m gonna go out on a limb here and disagree with all y’all. I work with address data extensively. I ceased to believe years ago that “we’ll only...
September 23, 2011 at 6:44 pm
In the Group properties window, right click the group or click the selection arrow to expand the list of options. Select Add Total, select Before to add Header, After...
September 19, 2011 at 12:40 pm
Make sure the params in SSRS are set to allow null and blank values, make sure your data types match. It looks like variables were declared as nVarchar ...
September 12, 2011 at 3:37 pm
Try the Matrix tool. Should do exactly what you are looking for.
August 26, 2008 at 1:06 pm
Viewing 15 posts - 151 through 165 (of 172 total)