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
Anonymous
Not applicable

Calculate change by department

Hi, 

 

DAX-newbie here. I'm losing my mind with this problem, so time to ask help! 

I have a data source that has dates, departments and for each date the sum of total value of all transactions. If on Monday the daily transactions are 50 and on Tuesday 30, then in the table Mon is 50 and Tue 80. 

 

What I want to achieve is the daily sales for each department. I'm sure this is easy to achive, but I'm just not getting it. I keep getting stuck on trying to filter by department, and it being impossible because text cannot be used in boolean experssion. I imagine this is DAX101-stuff, so the solution I imagine is simple


Could someone help out?

DATEDEPARTMENTTOTALSOLDDAILYTRANSACTIONS (THIS IS WHAT I WANT)
1/1/2020Sports100100
1/1/2020Clothing5050
1/1/2020Food7070
1/2/2020Sports15050
1/2/2020Clothing8030
1/2/2020Food9020
1/3/2020Sports17020
1/3/2020Clothing12040
1/3/2020Food11030

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous 

 

Create rank column =

Rank = RANKX(FILTER(Sheet3,Sheet3[DATE]<EARLIER(Sheet3[DATE]) && Sheet3[DEPARTMENT]=EARLIER(Sheet3[DEPARTMENT])),Sheet3[DATE],,ASC)
 
Then create one more column
 
current sale = Sheet3[TOTALSOLD]-CALCULATE(MAX(Sheet3[TOTALSOLD]),FILTER(Sheet3,Sheet3[DEPARTMENT]=EARLIER(Sheet3[DEPARTMENT]) && Sheet3[Rank]<EARLIER(Sheet3[Rank])))
 
 
Thanks & regards,
Pravin Wattamwar
www.linkedin.com/in/pravin-p-wattamwar

If I resolve your problem Mark it as a solution and give kudos.

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @Anonymous 

 

IS TotalSold column or measure?

 

Thanks,

Pravin

Anonymous
Not applicable

Hi @Anonymous 

 

It's a column. 

Anonymous
Not applicable

Hi @Anonymous 

 

Create rank column =

Rank = RANKX(FILTER(Sheet3,Sheet3[DATE]<EARLIER(Sheet3[DATE]) && Sheet3[DEPARTMENT]=EARLIER(Sheet3[DEPARTMENT])),Sheet3[DATE],,ASC)
 
Then create one more column
 
current sale = Sheet3[TOTALSOLD]-CALCULATE(MAX(Sheet3[TOTALSOLD]),FILTER(Sheet3,Sheet3[DEPARTMENT]=EARLIER(Sheet3[DEPARTMENT]) && Sheet3[Rank]<EARLIER(Sheet3[Rank])))
 
 
Thanks & regards,
Pravin Wattamwar
www.linkedin.com/in/pravin-p-wattamwar

If I resolve your problem Mark it as a solution and give kudos.
Anonymous
Not applicable

That worked perfectly, thank you so much, @Anonymous !

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.

Top Solution Authors