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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mattperry008
Frequent Visitor

PreviousDay comparison

HI All,

 

I'm trying to make a simple report that is sorted by category, then subcategory showing sales today and sales yesterday. 

 

A slicer is used to select the date.

 

Working from a table of sales transactions and a date dimension. 

 

Can anyone hellp me with the DAX to create the "Sales Yesterday" column?

 

Many thanks,

Matt

 

Mock up below:

Capture.PNG

 

2 REPLIES 2
v-caliao-msft
Employee
Employee

Hi Mattperry008,

 

According to your description, you need to add a column to display yesterday's sales amount, right?

 

If that is the case, you can add a calculated column to get the sales amount of yesterday. I have tested it on my loca environment, here is sample DAX expression for you reference.
PreviousDay = DATEADD('PreviousDay'[Date],-1,DAY)
PreviousDaySales = LOOKUPVALUE('PreviousDay'[Sales],'PreviousDay'[Category],'PreviousDay'[Category],'PreviousDay'[Subcategory],'PreviousDay'[Subcategory],'PreviousDay'[Date],'PreviousDay'[PreviousDay])

Capture.PNG

 

Reference
https://msdn.microsoft.com/en-us/library/gg492170.aspx

 

Regards,

Charlie Liao

mattperry008
Frequent Visitor

Hi Everybody,

 

Still not having any luck with this one, so will try to give more info about issue. Have moved to the Contoso sample sales data from Microsoft, and still cant get it working.

 

What I need to do is display a column of sales from today and a column with sales from yesterday. 

 

The DAX I am using is Previous Quarter Sales = CALCULATE(SUM(Sales[SalesAmount]), PREVIOUSDAY(Calendar[DateKey]))

 

But when I drag the measure onto the visualisation, nothing appears for prev quarter sales.

 

Would appreciate any assistance - even pointers to good tutorials on time intelligence.

 

Many thanks,

Matt

 

Data:

http://download.microsoft.com/download/4/6/A/46AB5E74-50F6-4761-8EDB-5AE077FD603C/Contoso%20Sales%20...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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