Viewing 15 posts - 31 through 45 (of 55 total)
Paul Morris-1011726 (4/10/2012)
There are only 3 values:
Printing =...
April 23, 2012 at 12:54 pm
Thanks. That worked. I knew I was over thinking it.
April 23, 2012 at 9:57 am
themangoagent (4/17/2012)
Here's what the query looks...
April 23, 2012 at 9:30 am
just found that last blank page solution.
In the Report Properties, there's an option called ConsumeContainerWhite. Select TRUE and the last page is gone.
March 19, 2012 at 2:16 pm
I found a solution when I was wanting to display an 'x' number of records on each page.
Dont know if this is what you're looking for but here it is.
Create...
March 19, 2012 at 2:13 pm
Instead of data going like this
Col1.......Col2.......col3
data1.....data4.....data7
data2.....data5.....data8
data3.....data6.....data9
I'm loking for this:
Col1........col2.......col3
data1......data2.....data3
data4......data5.....data6
data7......data8.....data9
From what my manager explained to me, this is called a Avery label format.
December 14, 2011 at 9:33 am
Gazareth (11/9/2011)
Or Reporting Service has a field format of percent which would show 0.5 as 50%.
I saw that and tried it, but didnt display what I wanted. Not sure why...
November 9, 2011 at 10:52 am
Thanks for the reply. This is what I did after I posted the question.
I made a huge IIF statement in the textbox:
IIF(Parameters!Percentage.Value = "0.50", "50",
IIF(Parameters!Percentage.Value = "0.51", "51",
and so...
November 9, 2011 at 10:28 am
If anyone is interested in a solution. Here goes:
I used a statement called a Row/Partition within the select statement in my view. This is what I used:
ROW_NUMBER() OVER(PARTITION BY Contact_NameID,...
November 2, 2011 at 10:55 am
Daniel Bowlin (11/2/2011)
If your parent group is based on Name, then add a header and put your name there instead of in the detail.
I thought the same thing but that...
November 2, 2011 at 10:13 am
I solved my own question. This is what I did.
So I created a parameter called StartPageNumber.
In the report footer, I created an expression:
=Parameters!PageNumStart.Value + Globals!PageNumber - 1
This allow you to...
June 13, 2011 at 10:21 am
Awesome thanks. I've been creating too many reports lately, didnt think about making a case statement. Thanks!
June 9, 2011 at 10:32 am
After review the code, I got it working the way I wanted it.
June 1, 2011 at 11:33 am
To resolve the issue with blank spaces within the name and addresses, I created an expression with a multiple IIF expressions. I tested it and it works as I want...
June 1, 2011 at 11:27 am
Will this raise any of textboxes that are below the "empty" space?
Thanks!
May 23, 2011 at 8:37 am
Viewing 15 posts - 31 through 45 (of 55 total)