I want to see WIP data in my cube. My fact table has a WIP_Date and a Bill_Date. If the item is not billed hence no Bill_Date, then it is in WIP.
WIP is a snapshot...so at any point in time I should be able to tell what my WIP was. The below SQL query will give me this in tsql for period 201307:
select * from Fact.Time where BillDateKey is null or BillDateKey >= 20130731 and WIPDateKey <=20130731
How do I write this in MDX?
Thanks for your help.
select * from Fact.Time where BillDateKey is null or BillDateKey >= 20130731 and WIPDateKey <=20130731
How do I write this in MDX?
Thanks for your help.