Viewing 15 posts - 46 through 60 (of 63 total)
If I take out my last table, Signature_Authority, where I'm only pulling three fields, the report will run with about 219 pages.
I'm trying to figure out the average size of...
September 20, 2005 at 11:42 am
How can I find that out in query Analyzer.....datalength(spReport)
I'm trying the query in a sproc...spReport, but when I run it in the Report Manager to preview the report, it doesn't...
September 20, 2005 at 11:17 am
The report, unfortunately, is suppossed to give the user all the data so they don't have to go in and print for individual IDs.
I'm using a list object for all...
September 20, 2005 at 9:46 am
What I did, and it worked, was take some width off the right side by just a "snap", and that solved the issue. Maybe putting the width on 6.5, even...
September 14, 2005 at 10:10 am
ofir shoval,
Thanks! That's what I found to do in my book!
August 30, 2005 at 8:04 am
Thanks Mark. I'll try it out. I was told not to worry about this for the report, but I'm sure it'll help in the future.
August 2, 2005 at 9:20 am
Well, I got it to work finally. I knew the report worked since it was a copy, and that original report was working. I had to set the parameter back...
August 2, 2005 at 9:16 am
The problem was my join b/n the two tables. Needed Left Outer to solve the issue.
July 29, 2005 at 1:06 pm
This is for a textbox on a report. Will that not take in the Expression Editor for SQL Server Reporting?
Do I need to go to: Report/Report Properties/Code and do a...
July 28, 2005 at 4:09 pm
Just tried this for the expression:
=
if isdbnull( Fields!Start_Date.Value ) OR
Fields!Start_Date.Value = cstr("01/01/1900")
then textbox35.text = "X"
end if
....and it basically gave me an error of "Expression Expected"
July 28, 2005 at 3:56 pm
Can't you use a nested IIF like
=IIF(
Fields!Start_Date.Value = cstr("01/01/1900"), "X",
IIF(
isdbnull(Fields!Start_Date.Value),"X",""))
Basically, I have to check for a smalldatetimefield, and if it's "01/01/1900" or <NUL>, then the textbox has to...
July 28, 2005 at 3:36 pm
Thanks ofir! I'll try that.
We may have gotten it to work. I used the targetserverURL for the hyperlink, and the parameter worked.
July 26, 2005 at 9:09 am
Sorry, the link is more like:
"https://server/Reports/Pages/Report.aspx?ItemPath=%2fMigration%2fWPNew
&WPPIDParam=" & strWPPID & "
July 25, 2005 at 8:47 am
SP2 definitely did the job! Thanks!
The "print preview" is terrible, and we're having to constantly juggle things around!
Thanks for the tips!
July 22, 2005 at 3:03 pm
Viewing 15 posts - 46 through 60 (of 63 total)