Reply
BBBB
New Member

Redate dates earlier than this month as this month

Can anyone help with the M language for redating any previous dates as the current month? It can be redated as any date in the month as I then change it to Month and year.

 

I'm sure It's probably simple using:

If Date.IsInPreviousMonth then....

But I cant figure it out and cant find any related posts on any forums.  

3 ACCEPTED SOLUTIONS

@BBBB plesae try the following:

1. Create a new blank query. Open the advanced editor and replace the contents with:

(vDate as date) => 
    let
        // Get the current date
        CurrentDate = DateTime.LocalNow(),

        // Extract the current year and month
        CurrentYear = Date.Year(CurrentDate),
        CurrentMonth = Date.Month(CurrentDate),

        
        AddCustom = if Date.IsInPreviousNMonths(vDate, 100) then Date.FromText(Text.From(CurrentYear) & "-" & Text.PadStart(Text.From(CurrentMonth), 2, "0") & "-01")
        else vDate
        
    in
        AddCustom

 

2. In your main query open the advanced editor. Put a  comma , behind the last line before the "in" part and add the following step:

inv_fnRedate = Table.TransformColumns(Source,{{"Date", fnRedate, Int64.Type}})

3. replace the 'in' part with:

in
    inv_fnRedate

 

View solution in original post

A bit more efficient than my previous suggestion; either this to transform your current dates column to new dates (no added column):

 

let
Source = Table.FromRecords({
[Date = #date(2024, 9, 15)],
[Date = #date(2024, 8, 10)],
[Date = #date(2024, 7, 5)],
[Date = #date(2024, 5, 5)],
[Date = #date(2020, 7, 5)]
}),
    NewDate = Date.StartOfMonth(Date.From(DateTime.LocalNow())),
    Result = Table.TransformColumns(Source,{{"Date", each if _ < NewDate then NewDate else _,type date}})
in
    Result

 

or this to add a new column:

 

let
Source = Table.FromRecords({
[Date = #date(2024, 9, 15)],
[Date = #date(2024, 8, 10)],
[Date = #date(2024, 7, 5)],
[Date = #date(2024, 5, 5)],
[Date = #date(2020, 7, 5)]
}),
    NewDate = Date.StartOfMonth(Date.From(DateTime.LocalNow())),
    Result = Table.AddColumn(Source, "New Date", each if [Date]<NewDate then NewDate else [Date], type date)
in
    Result

 

View solution in original post

Resolved:

 

= Table.AddColumn(#"Added Custom", "New Date", each if Date.IsInPreviousNMonths([DespatchDate], 100) then #date(Date.Year(DateTime.LocalNow()),Date.Month(DateTime.LocalNow()),1) else [DespatchDate])

 

This gives me the new dates as 01st of the current month.

I dont mind then adding another step to change it to month and year.

 

So satisfying when you finally get it to work. Thank you all for your help 

View solution in original post

9 REPLIES 9
p45cal
Super User
Super User

Try (to include converting dates more than a month ago):

= Table.AddColumn(PreviousStep, "New Date", each if [Date] < Date.StartOfMonth(Date.From(DateTime.LocalNow())) then #date(Date.Year(DateTime.LocalNow()),Date.Month(DateTime.LocalNow()),1) else [Date])

Resolved:

 

= Table.AddColumn(#"Added Custom", "New Date", each if Date.IsInPreviousNMonths([DespatchDate], 100) then #date(Date.Year(DateTime.LocalNow()),Date.Month(DateTime.LocalNow()),1) else [DespatchDate])

 

This gives me the new dates as 01st of the current month.

I dont mind then adding another step to change it to month and year.

 

So satisfying when you finally get it to work. Thank you all for your help 

A bit more efficient than my previous suggestion; either this to transform your current dates column to new dates (no added column):

 

let
Source = Table.FromRecords({
[Date = #date(2024, 9, 15)],
[Date = #date(2024, 8, 10)],
[Date = #date(2024, 7, 5)],
[Date = #date(2024, 5, 5)],
[Date = #date(2020, 7, 5)]
}),
    NewDate = Date.StartOfMonth(Date.From(DateTime.LocalNow())),
    Result = Table.TransformColumns(Source,{{"Date", each if _ < NewDate then NewDate else _,type date}})
in
    Result

 

or this to add a new column:

 

let
Source = Table.FromRecords({
[Date = #date(2024, 9, 15)],
[Date = #date(2024, 8, 10)],
[Date = #date(2024, 7, 5)],
[Date = #date(2024, 5, 5)],
[Date = #date(2020, 7, 5)]
}),
    NewDate = Date.StartOfMonth(Date.From(DateTime.LocalNow())),
    Result = Table.AddColumn(Source, "New Date", each if [Date]<NewDate then NewDate else [Date], type date)
in
    Result

 

Thank you for your suggestion. I'm currently unable to make it work but I'm persevering.

 

Can you explain the 'PreviousStep' bit please?

 

I've tried simplifying the formula to:

= Table.AddColumn(#"Added Custom", "New Date", each if [DespatchDate] < Date.StartOfMonth(Date.From(DateTime.LocalNow())) then (DateTime.LocalNow()) else [DespatchDate])

 

And then

= Table.AddColumn(#"Added Custom", "New Date", each if [DespatchDate] (Date.IsInPreviousMonth) then (DateTime.LocalNow()) else [DespatchDate])

 

But I keep getting error returned.

bhanu_gautam
Super User
Super User

@BBBB , You can try below m-code

 

m
let
// Replace this with your actual data source
Source = Table.FromRecords({
[Date = #date(2023, 9, 15)],
[Date = #date(2023, 8, 10)],
[Date = #date(2023, 7, 5)]
}),

// Get the current date
CurrentDate = DateTime.LocalNow(),

// Extract the current year and month
CurrentYear = Date.Year(CurrentDate),
CurrentMonth = Date.Month(CurrentDate),

// Add a custom column to redate previous dates to the current month
AddCustom = Table.AddColumn(Source, "RedatedDate", each
if Date.IsInPreviousMonth([Date]) then
Date.FromText(Text.From(CurrentYear) & "-" & Text.PadStart(Text.From(CurrentMonth), 2, "0") & "-01")
else
[Date]
)
in
AddCustom




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






Hey,

I added a little to your solution by making it a function that can be called in a Table.TransformColumn. This way you don't have to add a new column and remove the old.

let
// Replace this with your actual data source
Source = Table.FromRecords({
[Date = #date(2024, 9, 15)],
[Date = #date(2024, 8, 10)],
[Date = #date(2024, 7, 5)],
[Date = #date(2024, 5, 5)],
[Date = #date(2020, 7, 5)]
}),
    fnRedate = (vDate as date) => 
    let
        // Get the current date
        CurrentDate = DateTime.LocalNow(),

        // Extract the current year and month
        CurrentYear = Date.Year(CurrentDate),
        CurrentMonth = Date.Month(CurrentDate),

        
        AddCustom = if Date.IsInPreviousNMonths(vDate, 100) then Date.FromText(Text.From(CurrentYear) & "-" & Text.PadStart(Text.From(CurrentMonth), 2, "0") & "-01")
        else vDate
        
    in
        AddCustom,

    inv_fnRedate = Table.TransformColumns(Source,{{"Date", fnRedate, Int64.Type}})
in
    inv_fnRedate

@BBBB plesae try the following:

1. Create a new blank query. Open the advanced editor and replace the contents with:

(vDate as date) => 
    let
        // Get the current date
        CurrentDate = DateTime.LocalNow(),

        // Extract the current year and month
        CurrentYear = Date.Year(CurrentDate),
        CurrentMonth = Date.Month(CurrentDate),

        
        AddCustom = if Date.IsInPreviousNMonths(vDate, 100) then Date.FromText(Text.From(CurrentYear) & "-" & Text.PadStart(Text.From(CurrentMonth), 2, "0") & "-01")
        else vDate
        
    in
        AddCustom

 

2. In your main query open the advanced editor. Put a  comma , behind the last line before the "in" part and add the following step:

inv_fnRedate = Table.TransformColumns(Source,{{"Date", fnRedate, Int64.Type}})

3. replace the 'in' part with:

in
    inv_fnRedate

 

BBBB_0-1723475707525.png

 

Thanks for your suggestion. I'm currently unable to make it work but I'm persevering. 

avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

Check out the March 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)