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
ysherriff
Resolver II
Resolver II

Prior Week Sales

Hi all,

 

I have followed this video from Enterprise DNA, https://youtu.be/jclWnA7pEvY , on how to compute prior week sales. But for some reason my output is not correct. Below is the DAX formula and the output. Thank you for your help.  Also, how can i upload a WIP file? I don't see a link for file upload?

 

 

ysherriff_3-1651673822812.png

 

ysherriff_0-1651673405412.png

 

5 REPLIES 5
johnt75
Super User
Super User

That looks fine.

Don't think you can upload a file through this site, most people share from Google Drive or Dropbox or similar

johnt75
Super User
Super User

Add a week commencing column to your date table, like

[Date] - WEEKDAY([Date],2) + 1

That starts the week on a Monday, you can adjust if needed. Then change your measure to

Prior Week = 
var currentWC = SELECTEDVALUE('Date'[W / C])
return CALCULATE( [Total Prospects], REMOVEFILTERS('Date'), 'Date'[W / C] = currentWC - 7)

Thank you but this is what your formula is showing

 

 

ysherriff_0-1651675560102.png

 

Below is the formula for Week Commencing. 

ysherriff_1-1651675621792.png

 

Hmm, it works for me.

What is the formula for [Total Prospects] ?

Also, use Performance Analyzer to get the DAX code generated for the table visual, and have a look at that in DAX Studio. See if any additional filters are being applied which would need to be taken care of.

The formula for Total Prospects is 

 

Total Prospects =COUNTA( ( Prospects[Contact ID]))
 
I will check the performance analyzer. How can i upload a file?

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.