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.
Hey guys, I need a bit of help. I am trying to get something like this using IF clause and hasonevalue and I am stuck 🙂 Can someone please help me or give a suggestion about using something else
Solved! Go to Solution.
Hi @Anonymous ,
First create an index column in Power Query Editor, then create a calculated column like below:
Column3 =
var _min = CALCULATE(MIN('Table'[index]),FILTER('Table','Table'[Column2]=EARLIER('Table'[Column2])))
return
IF('Table'[index]=_min,'Table'[Column2],BLANK())
Best Regards,
Jay
Hi @Anonymous ,
First create an index column in Power Query Editor, then create a calculated column like below:
Column3 =
var _min = CALCULATE(MIN('Table'[index]),FILTER('Table','Table'[Column2]=EARLIER('Table'[Column2])))
return
IF('Table'[index]=_min,'Table'[Column2],BLANK())
Best Regards,
Jay
Hi @Anonymous -> Please brief us more about your requirement. What you are trying to achieve.