I'm using this query (MDX). It's returning data, but it's returning data for multiple years, where i'm trying to just get the dates in the date range: for example if I want 10/1/2013 the query returns 10/1/2013,10/1/2014,10/1/2015.
I'm looking for the specific date range, 10/13/2013 and 01/13/2014.
Why am I getting multiple years, where I specifically ask for that date range?
SELECT {[Measures].[Network Calls Received]}
ON COLUMNS,
non empty
[Dim Time].[Half Hour of Day].members ON Rows
FROM
[OTS Analysis Services]
where [Dim Date].[Date].&[10/13/2013]:[Dim Date].[Date].&[01/13/2014]