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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
AnaIsa
Frequent Visitor

calculate date before

Hi, 

How I can calculate a previous date  since a column with a data time received. Example: I have a column with this date:

AnaIsa_0-1714433092187.png

 

I want to calculate a previous date, it would be 31/03/24

 

thank you

 

 

1 ACCEPTED SOLUTION
v-yaningy-msft
Community Support
Community Support

Hi, @AnaIsa 

Thanks for @lbendlin reply. This is an additional step to his response, if you are confused how to proceed, you can refer to the following methods.

1. Power Query

vyaningymsft_0-1714444806409.png

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjDRNzDUNzIwMlGKjQUA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Date = _t]),
    #"ChangedType" = Table.TransformColumnTypes(Source,{{"Date", type date}}),
    AddedCustom = Table.AddColumn(ChangedType, "Previous Day", each Date.AddDays([Date], -1), type date)
in
    AddedCustom


2. Power BI Desktop

vyaningymsft_1-1714445953019.png

 

Previous Day 2 = 
VAR _previousDate = CALCULATE(SELECTEDVALUE('Table'[Date]) - 1)
RETURN
_previousDate

Or use Dateadd function directly.
DATEADD - DAX Guide

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

View solution in original post

3 REPLIES 3
v-yaningy-msft
Community Support
Community Support

Hi, @AnaIsa 

Thanks for @lbendlin reply. This is an additional step to his response, if you are confused how to proceed, you can refer to the following methods.

1. Power Query

vyaningymsft_0-1714444806409.png

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjDRNzDUNzIwMlGKjQUA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Date = _t]),
    #"ChangedType" = Table.TransformColumnTypes(Source,{{"Date", type date}}),
    AddedCustom = Table.AddColumn(ChangedType, "Previous Day", each Date.AddDays([Date], -1), type date)
in
    AddedCustom


2. Power BI Desktop

vyaningymsft_1-1714445953019.png

 

Previous Day 2 = 
VAR _previousDate = CALCULATE(SELECTEDVALUE('Table'[Date]) - 1)
RETURN
_previousDate

Or use Dateadd function directly.
DATEADD - DAX Guide

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

I would like to see the sales value for previous month at product detail, I only see it in a general table like this:

AnaIsa_0-1715207640344.png

but if I want to see by detail, If I select a month I see the same amount for AC and AC-1, the formula used for AC-1 is: 

Transit AC-1 = CALCULATE([Total Transit],(DATEADD('Date'[Date],-1,MONTH)))

AnaIsa_2-1715207911669.png

 

could you help me please ?

lbendlin
Super User
Super User

In Power Query you subtract #duration(1,0,0,0) . In DAX you subtract 1.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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