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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
leazimmer
Frequent Visitor

Problem with calculation of actual calenderweek

Hi together,

i need for my report a calculation to the actual year, month, quartal and week

year, month and quartal with the function TOTALQTD.

For the actual week i have use the code:

lfd. KW = CALCULATE([Anzahl Kunden],FILTER(ALL('Datumstabelle'),'Datumstabelle'[KalenderWoche]=SELECTEDVALUE('Datumstabelle'[KalenderWoche])))
I hope somebody can help me
Best wish and thank you
Lea
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@leazimmer , Not very clear, Refer my blog on WOW and WTD , that should help

 

Power BI — Week on Week and WTD
https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-La...
https://www.youtube.com/watch?v=pnAesWxYgJ8

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

4 REPLIES 4
HarishKM
Memorable Member
Memorable Member

@leazimmer  Hey ,

first create a date hirerachy then drag that to a slicer  from there you will get Year ->Month -> Week->Date

 

from slicer itself you can slice and dice different level of data .

then 

sales = calculate(sum(tablename[sales])
drag that in to the matrix 
you can slice month  you will monthly data 

 

HarishKM_0-1618553714734.png

for Time intelligence related dax a

you can use Dateadd and sameperiodlastyear (Year on year comparision) dax function

YTD = calculate(sum(tablename[sales]),dateytd(date[date])
last 4 week = calculate(sum(table[sales]),dateadd(date[date],-28,day)

QTD = CALCULATE(SUM(Sheet1[Sales]),DATESQTD(Sheet1[Date])

use above dax function to get desired output.
 
Kudos will be appriciated 

 

Anonymous
Not applicable

Hi @leazimmer ,

 

Sorry for that maybe I'm not getting what actually you are trying to do. I'm confused about the expression given without any data information. 

Could you please share some sample data and the expected result to have a clear understanding of your question? I can do some tests for you.

You can save your files in some cloud sharing platforms and share the link here.

How to provide sample data in the Power BI Forum - Microsoft Power BI Community

 

Do you want to distinctcount the number of calendar weeks in each category? I did a test. Is the following result what you want?

Weeknumber = WEEKNUM('Sheet1'[Date],2)
Measure = 
CALCULATE(
    DISTINCTCOUNT('Sheet1'[Weeknumber]),
      ALLEXCEPT(Sheet1,Sheet1[Category])
          )

Result:

v-yuaj-msft_0-1618551493768.png

 

Best Regards,

Yuna

leazimmer
Frequent Visitor

Thank you very much for your fast answer, but my result is a blank field

That is the customized code

Aktuelle Woche = CALCULATE(COUNT(konzeptum[Kundennummer]), FILTER(ALL('Datumstabelle'),'Datumstabelle'[Wochen Rank]=max('Datumstabelle'[Wochen Rank])))
Best wish and thank you
Lea
amitchandak
Super User
Super User

@leazimmer , Not very clear, Refer my blog on WOW and WTD , that should help

 

Power BI — Week on Week and WTD
https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-La...
https://www.youtube.com/watch?v=pnAesWxYgJ8

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors