So my fact table looks like this:
SurveyID ( --> Survey Dimesion)
GroupID( --> Group Dimension)
StatusID ( --> Status Dimension ... e.g. Complete, InProgress, New)
GroupCount (the actual measure)
How would I create a calculated member that would
return the "overall" count for a specific group in a survey (e.g.
ignore Status dimension) regardless if the user is slicing the data by
Status or not
Thanks again - wgpubs

How to ignore a dimension in MDX?
c4210
In my slicer I got survey, group and response status ... the kind of report I'm trying to generate in SSRS needs to looks something like this:
Survey Group Count OverallCount
... where Count should use the ResponseStatus dimension (so that users can filter out certain statuses and what not thru a RS parameter) while OverallCount should not.
ennisb
Try this ("ignoring" the status dimension - your exact naming may differ):
CREATE MEMBER CURRENTCUBE.MyCount AS
'([Status].[StatusID].[All StatusID],[Measures].[GroupCount])';
ST2B
Richard Hathaway
CREATE MEMBER CURRENTCUBE.[MEASURES].[Overall Group Count]
AS ([Response Status].[Response Status].[All], [Measures].[Group Count]),
VISIBLE = 1 ;