Viewing 15 posts - 106 through 120 (of 237 total)
Imke Cronje (3/3/2013)
I need some help with attaching an AdventureWorks analysis services database. I am trying to attach it but am getting the following error:
The database folder '<folder>\AdventureWorks SSAS.database'...
March 4, 2013 at 9:58 pm
If you have rows but null columns then it's because the calculated member is silently erroring, and that will be indirectly related to the multiple parameter values.
If this is working:
STRTOSET...
March 4, 2013 at 8:49 pm
StrToValue ( @SelectionGeographie + ".Hierarchy.Currentmember.Uniquename" )
StrToValue( @SelectionActivite + ".Hierarchy.Currentmember.Uniquename" )
...
March 3, 2013 at 11:10 pm
You want to get all data even though you have filtered the data? That doesn't really make sense. If you want all the data, don't filter it.
Can you explain a...
March 3, 2013 at 5:40 pm
yuvipoy (2/27/2013)
I am having a requirement of taking the MAC Address using SSRS is it is possible to take?
My Requirement:
To take and keep the mac address of each user...
March 3, 2013 at 5:34 pm
Thanks, this was a useful excercise. I didn't get 6, 13 and 15 right according to your answers.
6: I've never used ##globals. I know in procedural languages globals are...
February 28, 2013 at 9:13 pm
PowerPivot charts are also great visualisations, and you can use them alongside pivot tables for those who want to see the numbers. It's also just an Excel (or SharePoint) addon,...
February 24, 2013 at 8:14 pm
Not directly in SSRS.
If you create your own ASP.NET page with the report control you can use a text box with AJAX or similar technology to achieve this effect.
By...
February 24, 2013 at 8:01 pm
This is the exact error you would get if the parameter's datatype is Integer. Double check that.
Another thing you can try is using
like '%' + Cast(@ID as nvarchar(20)) +...
February 18, 2013 at 10:40 pm
Hi Niha,
Can you please show the errors here.
Datediff will show you the number of intervals. If you want days, leave it as days.
If your input dates, Fields!Date.Value
& Fields!Date2.Value
...
February 18, 2013 at 9:18 pm
Glad that you sorted it out.
Strange that the only change you made to fix it was removing some comments, that shouldn't have made any difference.
Anyway, strange things happen.
February 18, 2013 at 8:21 pm
If this is MySQL then this isn't really the right place, this site is for Microsoft SQL Server, but the first question I would ask you are what tools are...
February 18, 2013 at 6:53 pm
Your syntax looks fine, assuming these exist:
[Geography].[State hierarchy].MEMBERS
[Measures].[Test]
I tried it on Adventureworks 2005 changing it slightly to match an existing Hierarchy and Measure and it debugs fine (by pressing F5...
February 18, 2013 at 6:34 pm
=cdec(DateDiff(DateInterval.Day,Fields!Date.Value,Fields!Date2.Value))*(-1)
The DateDiff function "Returns a Long value specifying the number of time intervals between two Date values."
DateInterval.Day is the Day member of the DateInterval collection, so the DateDiff function...
February 17, 2013 at 11:20 pm
Viewing 15 posts - 106 through 120 (of 237 total)