Viewing 15 posts - 5,026 through 5,040 (of 5,096 total)
I assume you have no version control at your workplace? If not, I strongly suggest you implement it, as it will solve issues like this in a flash.
As for restoring...
May 26, 2016 at 9:48 am
I'm not sure why you have SUM's in your current expression, as the sample data you've provided is a single line. Therefore you're summing a single number, which always results...
May 25, 2016 at 8:38 am
You haven't accidentally changed your configuration at all have you? Each configuration will have a different TargetServerURL, so if you changed from Release to Debug, for example, you may not...
May 20, 2016 at 10:04 am
When entering the credentials, are you using a Windows Login? If so, you'll need to ensure that you tick the box that states you're using that (See screen below from...
May 20, 2016 at 3:04 am
Duplicate, Responded on other topic: http://www.sqlservercentral.com/Forums/Topic1787217-150-1.aspx
May 18, 2016 at 7:43 am
This is because SSRS, by default, doesn't export CSV's in unicode, but in ASCII.
You'll need to locate Report Services Configuration file, and then amend/add the render type. For example, on...
May 18, 2016 at 7:28 am
You can do this, yes, but the two domains will need to have trust between each other, so that you can authenticate still.
Access the SSRS portal, and hover over the...
May 16, 2016 at 3:03 am
I correct my previous post, but repasted:
=IIf(DateDiff("d",Fields!LastDiffBackupDate.Value, Today()) < 2,"Green", IIf(Fields!LastDiffBackupDate.Value is Nothing,"Transparent","Red"))
May 13, 2016 at 2:41 am
tmmutsetse (5/12/2016)
i dont know what is happening,the code you send me is having an uncommon symbol after Today()),but when i am replying it shows < symbol.
The less <2 is from...
May 13, 2016 at 2:04 am
=IIf(DateDiff("d",Fields!LastDiffBackupDate.Value, Today())<2,"Green","Red") OR IIf(IS Nothing(Fields!LastDiffBackupDate.Value),"Transparent").
You're almost there, but not quite. You have nest the iif's, so it would become:
=IIf(DateDiff("d",Fields!LastDiffBackupDate.Value, Today()) < 2,"Green", IIf(Fields!LastDiffBackupDate.Value is Nothing,"Transparent","Red"))
May 12, 2016 at 2:24 am
Phil Parkin (5/11/2016)
Thom A (5/11/2016)
[Sheet1$A2:J] This will...
May 11, 2016 at 7:08 am
Will the columns always be the same amount, for example Columns A through to J? If so, you can set the sheet name to;
[Sheet1$A2:J] This will make SSIS select all...
May 11, 2016 at 6:05 am
sindhupavani123 50704 (5/10/2016)
Thanks for your reply!
But my question is not averaging on a single column, if I understand it correct,
The data in report is something like this
IDSeller ...
May 11, 2016 at 4:09 am
Add a total's row to you table. You can do this by right clicking one of the cells with your data in and clicking Add Total. SSRS will automatically add...
May 10, 2016 at 9:10 am
wwwnlc111 (5/10/2016)
Hello,I am attaching two screen shot one normal and other after applying =Format(Parameters!intTime.Value, "#0:00:00")
Are the number actually integers or do they have some decimal places? If might be worth...
May 10, 2016 at 8:20 am
Viewing 15 posts - 5,026 through 5,040 (of 5,096 total)