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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi, I am trying to write some DAX that looks for an earlier non-zero value of a column based on multiple column criteria.
e.g. for row 3 below it would return the most 'recent' non-zero value where both SKU and Country match i.e. 15.40
I've had some joy using the below but it's not really working as I want it to:
Thanks!
@AdamRobC , this one seems correct. check do you have any other row, which is causing that or you need any additional filter
you can try this too
Test = MAXX(FILTER('Price Lookup','Price Lookup'[Config-SKU]=EARLIER('Price Lookup'[Config-SKU]) && 'Price Lookup'[Country]=EARLIER('Price Lookup'[Country])),'Price Lookup'[Current Price (€)])
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.