Viewing 11 posts - 1 through 11 (of 11 total)
Click View - > "Page Break Preview" in Excel and make it to one page
September 20, 2012 at 8:58 am
CREATE FUNCTION fnReturnTotalHoursFromTime(
@p varchar(14)
)
RETURNS decimal(20,6)
AS
BEGIN
DECLARE @hoursColon tinyint, @hours decimal(12,6), @minsColon tinyint, @mins decimal(6,4), @seconds decimal (8,6)
SELECT @hoursColon = CHARINDEX(':',@p) --Find 1st colon
SELECT @hours = SUBSTRING(@p,1, @hoursColon -1) --Take all data...
September 12, 2012 at 5:11 am
Make sure that you have UNCHECKED "Keep header visible while scrolling" for the tablix. Also make sure that you haven't put FixedData = True for every column, you need to...
July 4, 2012 at 8:14 am
I just posted this here: http://www.sqlservercentral.com/Forums/Topic1324882-1633-1.aspx
That should solve it for you. So to clarify...firstly untick "Keep header visible while scrolling" haha! Then, yeah, follow what it says in...
July 4, 2012 at 4:09 am
I posted "put it in the SELECT statement", then reread your question...I don't know how to delete posts sorry!!
July 4, 2012 at 4:06 am
Hey. All of this, combined, worked to solve the problem.
1) Share the workbook.
2) Ensure that the workbook is in a place for which the security is right to allow access...
May 30, 2012 at 6:39 am
Have you tried CTRL-Mouse Wheel scrolling to get right up close? Focus on the table and CTRL-Arrow until they are snug (2005 solution!).
May 14, 2012 at 1:41 pm
The workbook is shared, yes. Thanks, though, that is in the right area!
I have put it on the local c:\ drive of the BIDS machine I'm developing on, and...
May 14, 2012 at 10:29 am
You could be better just copying the chart beneath a page break then filtering each chart to only return a set number of data points.
If you can't do this in...
May 14, 2012 at 8:48 am
Viewing 11 posts - 1 through 11 (of 11 total)