Viewing 15 posts - 1 through 15 (of 16 total)
Turns out the problem is I wasn't aware of SSRS's toggle. Before a report can be printed the toggle must be clicked on to switch from input to output...
October 26, 2012 at 8:37 am
Thank you, SSCrazy. That did the trick.
Curiously, though, when I deleted the “(0)” a little drop-down menu appeared which includes an option called “IsMultiValue”. I tried that and...
March 8, 2012 at 8:14 am
Thankyou. I'll see about getting a translator for terms I don't understand yet, and a local expert to help me answer the questions. I think the only question...
March 6, 2012 at 2:00 pm
If you mean posting the same question in multiple forums ... I'm sorry, and won't do it again. I was advised it would be a good idea...
March 6, 2012 at 9:15 am
It turns out that the error message SSRS was throwing had NOTHING at all to do with what the actual error was. Not knowing any correct way of handling...
March 6, 2012 at 8:59 am
Thank you, fellow grasshopper.
I did not specify ... both my main report and the selected subreport are in the same folder, and I am running locally on my...
February 28, 2012 at 3:34 pm
Scott, thank you. That appears to be exactly what I need.:-)
December 30, 2011 at 7:19 am
A solution I often use is
Instead of saying date <= last-second-of-previous-month
I say
date < trunc(sysdate,'MM').
Of course this is out of the question if using Between.
In that case the afore-mentioned method...
December 29, 2011 at 9:32 am
Joseph,
Changing my Expression as follows seems to have solved my problem.
=iif(Fields!DEATHSTATUS.Value="DEATH","died "&iif(isNothing(Fields!DEATH_DATE.Value)," ",FormatDateTime(Fields!DEATH_DATE.Value))," ")
Thank you.
December 28, 2011 at 8:19 am
Thank you, Joseph.
Here is my Expression:
=iif(Fields!DEATHSTATUS.Value="DEATH","died "&iif(isNothing(Fields!DEATH_DATE.Value)," ",Fields!DEATH_DATE.Value)," ")
But from what you said maybe what I need to do is not join a date directly to a literal but first...
December 28, 2011 at 8:12 am
Veteran, thank you for your guidance.
I changed my Expression as you advised and my problem seems to have gone away.
=iif(Fields!DEATHSTATUS.Value="DEATH","died "&iif(isNothing(Fields!DEATH_DATE.Value)," ",Fields!DEATH_DATE.Value)," ")
I'll check my other reports exhibiting this problem...
December 27, 2011 at 8:21 am
Thank you. I experiment with that.
(The odd thing is that when I advance to page 2 it shows me "died " and whatever date is there whenever the criterion...
December 23, 2011 at 8:37 pm
Expression is very simple:
=iif(Fields!DEATHSTATUS.Value="DEATH","died "&Fields!DEATH_DATE.Value," ")
The last few hours I tried running my program to obtain an image. Now that I've finally obtained an image I find this web...
December 23, 2011 at 5:53 pm
This may not be relevant on your system ... on the system I work with a null date is counted as being greater than SYSDATE.
December 23, 2011 at 10:48 am
Thank you, 'Journeyman'.
No; you understood perfectly and your answer was exactly what I needed.:-)
December 22, 2011 at 3:26 pm
Viewing 15 posts - 1 through 15 (of 16 total)