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
I have two charts that show the time take to move in each step of a process.
Both charts have there own respective slicer associated with it to select a month.
How would I create a measure to look up the values based on the month selected in order to calculate the difference
Thank you
Solved! Go to Solution.
Hi @BInewbie,
Please share sample data of your tables so that we can provide you appropriate DAX.
Here is an example for you.
sumtable1 = CALCULATE(SUM(Table1[take]),ALLSELECTED(Table1[Month1]))
sumTable2 = CALCULATE(SUM(Table2[Take]),ALLSELECTED(Table2[Month2]))
look up the values = [sumtable1]-[sumTable2]
Then we can get the result as the picture below.
For more information, please check the pbix as attached.
Regards,
Frank
Hi @BInewbie,
Please share sample data of your tables so that we can provide you appropriate DAX.
Here is an example for you.
sumtable1 = CALCULATE(SUM(Table1[take]),ALLSELECTED(Table1[Month1]))
sumTable2 = CALCULATE(SUM(Table2[Take]),ALLSELECTED(Table2[Month2]))
look up the values = [sumtable1]-[sumTable2]
Then we can get the result as the picture below.
For more information, please check the pbix as attached.
Regards,
Frank
Hi @BInewbie,
Does this make sense? If so, kindly mark the answer as solution please. Thanks!
Regards,
Frank
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!