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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Dear all,
My source looks like this:
| Delivery Period | Economical Period | Value |
| January 2020 | January 2020 | 100 |
| January 2020 | February 2020 | 50 |
| February 2020 | February 2020 | 20 |
| February 2020 | March 2020 | 30 |
What I need is my output table to ONLY show the INITIAL value of the economical period and to leave the other rows empty.
Desired output table:
| Delivery Period | Economical Period | Initial Value |
| January 2020 | January 2020 | 100 |
| January 2020 | February 2020 | 0 |
| February 2020 | February 2020 | 20 |
| February 2020 | March 2020 | 0 |
So basically, I only need the table to show the value if delivery period = economical period.
The total of the measue should be 120 (100 + 20).
Which measure can I use to achieve this result?
Thank you!
Solved! Go to Solution.
@AVIE ,
Try a measure like
calculate(Sum(Table[Value]), filter(Table, Table[Delivery Period]=Table[Economical Period]))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!