Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hi I am new to power query
I would like to create two columns which have the fulfill date from the last row of column 1 and column 2.
Please try to help Pic 1
Solved! Go to Solution.
This should work:
NewColumn1 = Table.AddColumn(PreviousStepName, "Date1", each List.Last([Column1])),
NewColumn2 = Table.AddColumn(NewColumn1, "Date2", each List.Last([Column2]))
--Nate
This should work:
NewColumn1 = Table.AddColumn(PreviousStepName, "Date1", each List.Last([Column1])),
NewColumn2 = Table.AddColumn(NewColumn1, "Date2", each List.Last([Column2]))
--Nate
You can remove rows that contain: "Order" and "Date" then FillUp.