Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi experts,
Need your help here.
I am using a disconnected table in the PBI model called "Count" in the report which has a continous column "Number" with values 1 to 5 million.This column is being used as axis in a Line graph to create a continuous line. As a value i am using a measure "Total calls where Total calls = Sum(Calls Fact[Calls])
We have another scatter plot visual, which looks like below and gets filtered based on a slicer "Caller type"
Now the requirement is based on the "Caller type" filter whatever max value we get as Number of callers in the Scatter chart X-axis, same value should be set in the Line graph as maximum value for X axis.
Basically we are trying to allign the scatter plot X-axis and Line graph axis.
Solved! Go to Solution.
@Anonymous If I understand correctly, I think you can create a measure:
FilterDiff = MAX(CallFact[NumberCallers]) - MAX(Count[Number])
Then use this as a visual level filter on the line chart and set to FilterDiff is greater than or equal to zero.
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
@Anonymous Not sure if I really understood your question. Can you provide an example with some data? Do you want to change the x-axis on the line chart based on the maximum value in the scatter chart? Not sure if this is what you are after?
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@Anonymous If I understand correctly, I think you can create a measure:
FilterDiff = MAX(CallFact[NumberCallers]) - MAX(Count[Number])
Then use this as a visual level filter on the line chart and set to FilterDiff is greater than or equal to zero.
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.