• IF I want use OR condition then What I have to Do ? Following query give me error : No function matches signature '<Member> OR <Member>'.

    WITH
    SET [~ROWS] AS
      {[Location_Cluster.default].[Location_Cluster].Members}
    member [Date].[Rang] as
    'Aggregate(([Date].[End_Date].[2017-01-28]:[Date].[End_Date].[2017-01-28]))'
    member [Taxonomy].[Name] as
     'Aggregate([Taxonomy].[Taxonomy_ID].[3] or [Taxonomy].[Taxonomy_ID].[178])'
    SELECT
    NON EMPTY {[Measures].[Total_Quantity], [Measures].[Total_Margin], [Measures].[Location_Count]} ON COLUMNS,
    NON EMPTY [~ROWS] ON ROWS
    FROM [APCS_SALES_CUBE] Where ([Date].[Rang],[Cluster.Cluster_Id].[3],[Taxonomy].[Name],[Company.Company_Name].[Compnay_Name].[2])

    If I replace OR with , then it will work, but I want OR condition.