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 Community,
Following is my sample dataset. 'Firstnonblank Servicedate' is a calculated column that gets the first or the earliest date. I would like to know how can I create a calculated column 'Service Type of Firstnonblank Servicedate'?
Thanks in advance!
Solved! Go to Solution.
@Anonymous , Try new column like
minx(filter(Table, Table[Service Date] = earlier([Firstnonblank Servicedate])),[Service Type])
or
minx(filter(Table, Table[Service Date] = earlier([Firstnonblank Servicedate])),earlier([Service Type]))
@Anonymous You can try like below -
@Anonymous sorry it doesn't work. It reurns all the service types.
@Anonymous , Try new column like
minx(filter(Table, Table[Service Date] = earlier([Firstnonblank Servicedate])),[Service Type])
or
minx(filter(Table, Table[Service Date] = earlier([Firstnonblank Servicedate])),earlier([Service Type]))