Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

loading only last 3 month data from table

Hi ,

 

i need data from last 3 month from a table , and it should not filter it from the current day for last three month it should consider only the month , for examble if its 23 rd of may month i need to get data from march 1 ,   i have filtered my table date column as in t his current quarter it didnt help , 

 

#"Filtered Rows" = Table.SelectRows(incidents_table, each Date.IsInCurrentQuarter([createdon])),

 

any help 

5 Replies

  • Anonymous 

    Try the following code

    #"Filtered Rows" =
    Table.SelectRows(incidents_table, each [createdon] >=  Date.StartOfMonth(Date.AddMonths(Date.From(DateTime.LocalNow()),-2)) and [createdon] <= Date.From(DateTime.LocalNow())),



     

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi Fowmy 

      i am getting below error 

       

       

      • Fowmy's avatar
        Fowmy
        Super User

        Anonymous 

        If you do not need the time pat of the date column, you can remove the time as I showed below. Do it before filtering the dates