Viewing 15 posts - 556 through 570 (of 893 total)
To add to my previous response:
If you want to create an "OR" scenario and display both members separately, include the "All" member from each attribute hierarchy:
with set [Filtered Customers]
as
{
{strtoset('{[Retail Customer].[Gender].&[Male],[Retail...
March 3, 2015 at 7:48 am
To create a named set, the syntax will look something like the following:
with set [Filtered Customers]
as
{
{[Retail Customer].[Gender].&[Male]}
* {[Retail Customer].[Marital Status].&[Divorced]}
}
select{[Measures].[Units Sold]} on 0
,{[Filtered Customers]} on 1
from[Sales]
The above will create a...
March 3, 2015 at 7:39 am
Yes, you cannot use the same hierarchy in the where-clause and the "Rows" axis.
You have 2 options in this case:
1. Instead of using it in the where-clause, create a...
March 2, 2015 at 2:58 pm
jjbear11 (3/2/2015)
March 2, 2015 at 2:45 pm
brad.mccollum (3/2/2015)
March 2, 2015 at 11:02 am
Yes, that is correct. A bit of a training issue, but that is not unusual.
It would also be possible to use Scope Assignments to "lookup" the measures through the BU...
March 2, 2015 at 8:58 am
Yes, it can be done. Use the StrToSet() function in your where clause to filter, with the values of your dropdown...you may have to format these a little.
March 2, 2015 at 8:34 am
I would personally recommend the following:
* Keep separate Business Unit and Product dimensions. You really don't have any other choice because of your fact tables.
* Either have the Business Unit...
March 2, 2015 at 7:55 am
MaggieW (2/26/2015)
I need to write a Stored Procedure or SSIS package to export only new records with a time stamp from a table in SSMS to client's desktop.
How should...
February 27, 2015 at 7:29 am
paul.smith2 (2/27/2015)
I need some help desperately. I am very new to report builder 3.0 and have never written in SQL and dont really understand it. I am however comfortable...
February 27, 2015 at 7:25 am
mannychohan (2/26/2015)
February 26, 2015 at 7:26 am
mannychohan (2/25/2015)
I have placed following controls into package.
DataFlowTask --> Exports data into a tab delimited flat file. Column...
February 25, 2015 at 4:14 pm
Lidou123 (2/25/2015)
OK. But I have not possibilities to have the SSAS solution.But I can't do it in my report ?
It's only for a report !!!!!!!!!
The "ALL" member usually comes to...
February 25, 2015 at 10:47 am
Lidou123 (2/25/2015)
I tried this and that's work well.
But I dont't know why my [ALL MEMBER] is null.
Do you know I can rename it like ' All Clients'...
February 25, 2015 at 10:29 am
Lidou123 (2/25/2015)
I tried this
SELECT NON EMPTY {[Measures].[MyMeasure]} ON COLUMNS,
NON EMPTY {
Hierarchize (
Generate (
...
February 25, 2015 at 9:29 am
Viewing 15 posts - 556 through 570 (of 893 total)