Viewing 15 posts - 106 through 120 (of 232 total)
You can use Reportitem.TextBox1.value to get the value of the text box(named textbox1) then use it a IIF expression like Happy cat suggested.
alternatively you could take your formula that you...
April 22, 2013 at 7:12 am
If I understand what you're saying then what you need to do is make a dataset for Party and segemt.
the data set would have a query along the lines of
Select...
April 12, 2013 at 1:20 pm
What do the reportserver logs say? They might have an error message that could pint you in the right direction.
April 12, 2013 at 1:16 pm
Sorry, i totally misread your post. My error was totally different. I read to fast and my mind filled in the blanks.
April 5, 2013 at 3:27 pm
You'd think that. It was like that in 2005 but for 2008 I find that unless I change a parameter the result set stays cached. I even have...
April 5, 2013 at 3:25 pm
When i did my upgrade I had two reoccuring errors. One was the one that you had. Do your reports have background images in the headers? if...
April 5, 2013 at 3:09 pm
I think you have an extra + at the end after NAME.Value
April 5, 2013 at 3:00 pm
your reports might not actually be faster, just cached. As a test try deleting the .rdl.data files (in the same Dir as the repors) and try running the reports...
April 5, 2013 at 2:50 pm
I've tried a few more things to no avail. I found another report that has a large dataset and ran them both a few times.
Trouble report: Bytes Retrieved...
April 5, 2013 at 10:14 am
the files are named differently so you could probably try the process with those files and see if it works. There wasn't anything in the article about 64bit.
April 4, 2013 at 2:32 pm
I believe there's a x32 and x64 version of the CAB as well. I'm not sure if the files are named the same or not or what to do...
April 4, 2013 at 2:28 pm
I should that the part that helped me was the location of the cab file on the server that houses reporting services and where to put the RDL and DLL...
April 4, 2013 at 8:39 am
There's a article here that helped me with this problem. I've had this problem twice. Once in 2005 where it wsa a CU that fixed it. the...
April 4, 2013 at 7:32 am
Never mind I just saw your other post...
http://www.sqlservercentral.com/Forums/Topic1438173-150-1.aspx
April 4, 2013 at 7:28 am
so
IF @ApplicationName = 'MAC'
BEGIN
SELECT NetworkName, SampleTime, [Max] FROM vinny..PerfData_CPUServerView (nolock)
Where NetworkName in (@ServerName)
And SampleTime >= @StartDateTime and SampleTime <= CONVERT(date, DATEADD(dd, 1, @EndDateTime), 101)
Order by SampleTime asc
END
ELSE
BEGIN
select...
April 4, 2013 at 7:27 am
Viewing 15 posts - 106 through 120 (of 232 total)