Viewing 15 posts - 166 through 180 (of 290 total)
And you can using javascript in the action, as you have done.
You just need to fix the URL to the reportserver.
November 25, 2015 at 2:15 am
If these are dynamically generated column headings using =Format(Fields!Date.Value,"dd-MMM-yyy"), there must be some sort of column grouping. You should be able to see when the matrix is selected in...
November 24, 2015 at 4:41 pm
So is this a column grouping in a matrix?
November 24, 2015 at 9:58 am
How large is each image file? Even if you scale them in reporting services it just uses html attributes or CSS for scaling but doesn't shrink the actual image...
November 24, 2015 at 9:45 am
You are not doing the URL access correctly. Your URL is just the Report Manager URL with a parameter tacked on.
You need to access the Report Service...
November 24, 2015 at 9:37 am
It's not sorting it correctly since Format returns a text string. Use the format expression in the value of the textbox and then just use the date itself (Fields!Date.Value)...
November 24, 2015 at 9:33 am
Ahh soz, I can see what's happening, my fault. We always use stored procedures for our report datasets so multivalued parameters get passed as a comma-delimited string (e.g. 'a,b,c')....
November 18, 2015 at 6:42 am
Just looking at it, i.e. not testing it, I can see two things wrong.
Don't bracket each line of your switch statement. A switch statment requires two parameters per condition,...
November 18, 2015 at 3:58 am
Hi,
Your picture didn't attach correctly but I suspect that you should explicitly scoping your Min function, probably over the tablix or dataset.
For example Min(Fields!BALANCE.Value, "Tablix1") or Min(Fields!BALANCE.Value, "DataSet1")...
November 13, 2015 at 3:54 am
An Action doesn't show if the expression returns an error. If you create a new column and put your formula in the Value expression you'll probably see you are...
November 11, 2015 at 6:34 am
Could you add a column group over the month?
November 10, 2015 at 3:06 am
Hi Rick,
If you want a member property to be returned in your result set you need to do that as a calculated member as you are returning a values. ...
November 4, 2015 at 9:18 am
Nulls are represented by the value Nothing in SSRS and like in SQL they are distinct from 0 or an empty string etc.
In your expression you are comparing Nothing >=...
October 22, 2015 at 8:27 am
Care to post the custom code?
October 22, 2015 at 3:34 am
Viewing 15 posts - 166 through 180 (of 290 total)