Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
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:
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])
Reference
https://msdn.microsoft.com/en-us/library/gg492170.aspx
Regards,
Charlie Liao
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:
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
71 | |
68 | |
42 | |
42 |
User | Count |
---|---|
47 | |
40 | |
28 | |
27 | |
26 |