March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello
I have a data table consisting of deferral schedules from which I need to create a table showing transactions for each schedule by period, based on a date slicer.
If the schedule document date is less or equal to the selected date, the schedule and all transactions related to it must be included in the report. If the schedule is in the future (i.e. greater than the selected date, it must not be included.
A shedule has a transaction line number of 0, while the transactions of the schedule have transaction lines from1 onwards.
Below I have an example of the data file and two scenarios, each having a different selection date.
My problem is when I reference the selection table. I am unable to use a filter (to select only those current and past schedules) when calculating the Trans Amt for each specific period. My date slicer is set to 'Before', and the calculation used for each period is :
Solved! Go to Solution.
@SueM , If you have date Table, You can create a measure like, In that case, Transaction date or schedule date should be joined with date table and date column from date table should be used
Then have measure like
CALCULATE(Schedule[Total TranAmt],DATEADD(Date[Date],X,MONTH))
CALCULATE(Schedule[Total TranAmt],DATEADD(Date[Date],1,MONTH))
Thank you for your response.
Yes I have done that, but I still don't know how to filter those lines where the schedule document date is greater than the selected date.
I only want those where the schedule date is less or equal to the selected date, but calculate the tran amount on the Transaction date.
@SueM , If you have date Table, You can create a measure like, In that case, Transaction date or schedule date should be joined with date table and date column from date table should be used
Then have measure like
CALCULATE(Schedule[Total TranAmt],DATEADD(Date[Date],X,MONTH))
CALCULATE(Schedule[Total TranAmt],DATEADD(Date[Date],1,MONTH))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
203 | |
141 | |
107 | |
73 | |
70 |