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

Distinct Count of weeks based on sales measure

I have to tables sale table and calendar table In calendar table I have weeks column. I have a calculation of sales in my sales table I want to get the number of weeks based on my sales measure.
I don't want all number of weeks but only the number of weeks where sales have been made according to my calculated sales measure.
Thanks.
week no.png

 

sale measure.png

 

1 ACCEPTED SOLUTION
PaulOlding
Solution Sage
Solution Sage

Hi @Anonymous 

The trick is to iterate the Sales table and count the number of weeks.  We can use SUMMARIZE to do that as it can access the extended table.

week count = 
COUNTROWS(SUMMARIZE('Sales','Date'[Week]))

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

@PaulOlding it worked just added a filter where payment=sales
thanks a lot!

 

PaulOlding
Solution Sage
Solution Sage

Hi @Anonymous 

The trick is to iterate the Sales table and count the number of weeks.  We can use SUMMARIZE to do that as it can access the extended table.

week count = 
COUNTROWS(SUMMARIZE('Sales','Date'[Week]))
Anonymous
Not applicable

@PaulOlding  Thanks for your reply
The thing is that sales is not a column its a calculated measure

 

@Anonymous The 'Sales' referenced in my measure is the name of the table with all the sales amounts (ie the fact table)

Anonymous
Not applicable

@PaulOlding  this does not work can we try some other logic?

 

@Anonymous In that case some more information would be helpful.  See this post https://community.powerbi.com/t5/DAX-Commands-and-Tips/How-to-Get-Your-Question-Answered-Quickly/m-p/1626726#M32906 

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