Viewing 15 posts - 1 through 15 (of 30 total)
I have seen this before, and it was correctecd by checking the Side Margins checkbox on the axis property tab.
February 25, 2009 at 6:27 am
On your Y-axis tab check to see if you have any values in the Cross At field. I would suggest either putting in a zero or leaving it blank....
February 19, 2009 at 1:50 pm
sql-oholic (2/19/2009)
I am using a table control in my report. Here, For one of the fields, I want to get following:
This field shows overAge indicator for students for...
February 19, 2009 at 12:47 pm
I guess it depends upon which labels you are wanting to change the color on. If it is the labels on the X or Y axis, then JAck's post...
February 18, 2009 at 7:18 am
OK, if I follow you correctly you have a data set in which one of the fields is City, and you have a parameter that is a drop-down list of...
February 12, 2009 at 6:57 am
In the expression for the URL, try something like this -
="http://dir.myinsanelylargecompany.com/staff.asp?txtFirst=" + Fields!FirstName.Value + "&txtLast=" + Fields!LastName.Value
February 9, 2009 at 6:24 am
You can reference fields from a different dataset than the one your table is associated with, by specifying the dataset name when you reference the field. Like so -...
February 4, 2009 at 6:19 am
Well I suppose the obvious thing to check for is that your field used to toggle the visibility for the details is not located in the group footer instead of...
February 3, 2009 at 11:51 am
How about this.
Instead of doing the =IIF logic in the text box on the Layout tab, manually add a calculated field to the dataset on the Data tab, using your...
January 30, 2009 at 6:45 am
If you are only concerned about how the data is displayed, and are not looking to only use the two decimal place value for calculations, then I would suggest simply...
January 28, 2009 at 12:11 pm
Try this.
=IIF(Weekday(Today())=1,DateAdd("D",1,Today()),
IIF(Weekday(Today())=2,Today(),
DateAdd("D",-1*(Weekday(Today())-2),Today())))
It assumes Sunday as the first day of the week. If that is different from what you use, then you will need to change the format of the...
January 28, 2009 at 6:40 am
Glad I could be of assistance, and that it is working for you now.
January 26, 2009 at 9:39 am
Sorry, should have seen this before.
In your Stored Proc, do not DECLARE @Manager, just list it. That is, simply remove the word DECLARE from that line.
Also place that...
January 26, 2009 at 9:23 am
For your dataset that pulls the list of Managers for the parameter, go into the edit screen for it (using the ... button) and check the Parameters tab to make...
January 26, 2009 at 9:12 am
Viewing 15 posts - 1 through 15 (of 30 total)