Forum Discussion
Filter Values Between Dates
Hi MojoGene ,
I would prefer a "entry" logic, with on date column
Here an example:
Date | Entry Type | Quantity
------------------------------------------
01-01-2019 | In WIP | 10
02-01-2019 | In WIP | 20
02-01-2019 | Out WIP | -10
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
- MojoGene6 years agoPost Patron
Thanks for the reply.
I am having difficulty translating your logic to DAX. Can you enlighten me on that?
- mwegener6 years agoMost Valuable Professional
Hi MojoGene ,
i think you better do this with Power Query.
1. Query for WIP IN
2. Query for WIP OUT
Then Append this two queries to one new Query.
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.
- MojoGene6 years agoPost Patron
Well, I have stumbled on a DAX solution that looks like this:
WIP Daily Balance 2 = CALCULATE ( SUM ( fees_WIP[FeeValueWIP] ), FILTER ( ALL ( fees_WIP ), fees_WIP[DateInWip] <= MAX ( fees_WIP[DateInWip] ) && fees_WIP[DateOutWip] > MAX ( fees_WIP[DateInWip] ) ) )When I try to use the Date table for comparison (e.g., ... fee_WIP[DateInWIP <= MAX(Dates[Date]) ...) that causes an error (which I still do not understand).
Anyway, thanks for jumping in.