Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Subtract or Add #s to a date field in M Query

I would like to be able to subtract or add a # of days from a date field in the query editor.   In one column I have number of days (5,300, 60) and in another column i have dates 01/01/2018.  Is there a custom column function that will subtract or add?

 

 

Example......   01/01/2018 + [Date Field] (5) = 01/06/2018 

Thanks!

 

 

1 ACCEPTED SOLUTION

@Anonymous,

 

Change the data type if necessary.

Date.AddDays(Date.From([Start Date]), Number.From([Promote_or_Defer__c]))
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
MarcelBeug
Community Champion
Community Champion

Yes: Date.AddDays.

Specializing in Power Query Formula Language (M)
Anonymous
Not applicable

When I use the formula for dateadd it doesn't do the calculation.

 

Date.AddDays([Start Date], [Promote_or_Defer__c])

@Anonymous,

 

Change the data type if necessary.

Date.AddDays(Date.From([Start Date]), Number.From([Promote_or_Defer__c]))
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

let
    Source = #table(type table[Start Date = date,Promote_or_Defer__c = Int64.Type], {{#date(2017,12,18),-10},{#date(2017,12,18),10}}),
    #"Added Custom" = Table.AddColumn(Source, "Resulting Data", each Date.AddDays([Start Date],[Promote_or_Defer__c]), type date)
in
    #"Added Custom"
Specializing in Power Query Formula Language (M)

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.