March 24, 2017 at 4:23 am
Hi
I'm hoping someone can provide some assistance in relation creating a DAX Measure or in relation to my structure.
Overview
My Core Measures are as follows:-
Which of course works fine when you drill down in a logical manner.
The Problem
However how can I drill up ie
Thanks
My Dimensions are
My 3 fact tables are
Fact Approval
Fact Offer
Fact Payment
March 28, 2017 at 8:40 pm
what is the Value of all Approvals for Payments made in Year 2017
...Where is your Calendar table? Then you can do time-based summaries, like this:
CALCULATE( SUM([Approval Amount]), Calendar[Year] = 2017 )
You can also do running totals etc, like YTD calculations with them.
April 3, 2017 at 3:23 am
@pietlinden, thank you for taking the time to reply. Opppsss I have a calendar table, just forgot to mention it above.
Thanks for the example code above. Whilst this provides me with a total of Approvals for 2017, I still have the issue (I think) that I only want the Approval value for only those Offers offered in 2017.
For example
There are 10 Approvals in 2017 totaling €1,000
Of the 10 Approvals only 2 were offered in 2017 (which were worth €100 each)
If I filter on Offer Year (2017) I would be looking for a total of €200 as that is the total of the Approvals that was Offered in 2017.
Hope the above makes sense.
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply