Forum Discussion

Anders_G's avatar
Anders_G
Helper I
4 years ago
Solved

Create a custom column with a date based on another columns date

How do I write a formula that creates a new column that takes a range of dates and delivers a new date?   The dates on the left are the ones that I have. I want to create a custom column with the s...
  • amitchandak's avatar
    amitchandak
    4 years ago

    Anders_G , Try in power query like

     


    Date.AddQuarters([Column],1)

     

    or

     

    Date.StartOfQuarter(Date.AddQuarters([Column],1))

     

    If this works, Mark as a solution