Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.