Forum Discussion
chuongtt
5 years agoRegular Visitor
Create a new column which has value from last row
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
- Anonymous5 years ago
This should work:
NewColumn1 = Table.AddColumn(PreviousStepName, "Date1", each List.Last([Column1])),
NewColumn2 = Table.AddColumn(NewColumn1, "Date2", each List.Last([Column2]))
--Nate
2 Replies
- AnonymousNot applicable
This should work:
NewColumn1 = Table.AddColumn(PreviousStepName, "Date1", each List.Last([Column1])),
NewColumn2 = Table.AddColumn(NewColumn1, "Date2", each List.Last([Column2]))
--Nate
- JakintaSolution Sage
You can remove rows that contain: "Order" and "Date" then FillUp.