Forum Discussion

Cuorepazzu's avatar
Cuorepazzu
Copper Contributor
Sep 19, 2023
Solved

Dates Formatting

Dear I have the delivery dates and would like to convert them to departure dates. This means that we calculate 7 days transport for export. Now the question is: Is it possible to filter the d...
  • mrjohnsmith's avatar
    Sep 20, 2023

    In Power Query, you can filter delivery dates by customer number and automatically calculate departure dates by subtracting 7 days. Begin by loading your delivery date data into Power Query. Then, create a custom column that filters based on the customer number and subtracts 7 days from the delivery date. To do this,

     

    use the "Add Custom Column" option in Power Query, and write a formula like: = Table.AddColumn(#"PreviousStep", "Departure Date", each if [Customer Number] = YourCustomerNumber then Date.AddDays([Delivery Date], -7) else [Delivery Date]). Replace YourCustomerNumber with the specific customer number for which you want to calculate departure dates.

Resources