The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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.