Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I need an urgent help.
I have a month and year filter, which linked to the Date table.
I have another table A which is not linked to the date able and it has a Start date and End date.
Now I want to filter table A where the selected Year and Month lies in between the Start Date and End Date.
Please help me.
Thanks
Solved! Go to Solution.
Hi @Anonymous ,
Could you tell me if your problem has been solved? If it is, kindly mark the helpful answer as a solution if you feel that makes sense. Welcome to share your own solution. More people will benefit from here.
Best Regards,
Xue
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Could you tell me if your problem has been solved? If it is, kindly mark the helpful answer as a solution if you feel that makes sense. Welcome to share your own solution. More people will benefit from here.
Best Regards,
Xue
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
I create a sample to calculate total values when the selected date is between start date and end date. You can reference it to modify yours.
Table = CALENDARAUTO()
Measure = VAR a = CALCULATE ( SUM ( Table1[values] ), FILTER ( Table1, MAX ( 'Table'[Date].[Year] ) = Table1[START_DATE].[Year] ) ) VAR b = CALCULATE ( SUM ( Table1[values] ), FILTER ( Table1, MAX ( 'Table'[Date] ) <= Table1[END_DATE] && MAX ( 'Table'[Date] ) >= Table1[START_DATE] ) ) RETURN IF ( ISFILTERED ( 'Table'[Date].[Year] ), IF ( ISFILTERED ( 'Table'[Date].[Month] ), b, a ), SUM ( Table1[values] ) )
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
117 | |
75 | |
62 | |
50 | |
44 |
User | Count |
---|---|
174 | |
125 | |
60 | |
60 | |
57 |