Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
For the table above, I am trying to create a measure that will find the difference between "% of Returns" for (Jan-1 to Apr-1) & "% of Returns" for (Apr-2 to Aug current date).
But the "% of Returns" is a measure
[
].
Tried many methods but wasn't able to find a solution, and am stuck in this case. It would be really helpful if anyone could help me with the solution.
Thank you in advance.
Hi @Anonymous ,
Try to add a date range to filter the % of Returns.
For example,
% of Returns for (Jan-1 to Apr-1) =
SUMX (
FILTER (
ALLSELECTED ( 'DateTable' ),
[Date] >= DATE ( 2022, 1, 1 )
&& [Date] <= DATE ( 2022, 4, 1 )
),
[% of Returns]
)
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous,
I tried this solution but it doesn't seem to work. It returns a value greater than the value expected.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.