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

Calculating current Quarter and use filter in DAX

So i have this DAX here and I want to be selecting current Quarter automatically instead of manually changing it every time what should I change?

 

Target = Calculate(SUM('TABLE'[Budget])/12, FILTER( TABLE,'TABLE'[Year]=2018 && 'TABLE'[Quarter]="Q3"))
 
Can I also do this with year too? in a different query.
Or use a function to calcualte QTD?
1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@Anonymous Try:

Target = 
  VAR __Quarter = "Q" & QUARTER(TODAY())
  VAR __Result = 
Calculate(SUM('TABLE'[Budget])/12, FILTER( TABLE,'TABLE'[Year]=2018 && 'TABLE'[Quarter]=__Quarter))
RETURN
  __Result



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Community Champion
Community Champion

@Anonymous Try:

Target = 
  VAR __Quarter = "Q" & QUARTER(TODAY())
  VAR __Result = 
Calculate(SUM('TABLE'[Budget])/12, FILTER( TABLE,'TABLE'[Year]=2018 && 'TABLE'[Quarter]=__Quarter))
RETURN
  __Result



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

@Greg_Deckler 

I get the following error when I use this now:

MdxScript(Model) (1427,67) Calculation error in measure 'Table'[Measure]: DAX comparison operations do not support comparing value of type Text with value of type integer.

Consider using the Value or format function to convert one of the values.

 

 

 

So my measure is :

Measure =
VAR __Current_year = Year(Now())
VAR __Quarter = "Q" & QUARTER(TODAY())
  VAR __Result =
Calculate(SUM('Table'[cost]), FILTER( 'Table','Table'[Year] = __Current_year && 'Table'[Quarter]=__Quarter && 'Table'[activity_type]= "X"))
RETURN
  __Result

 

The column Year is dax like this:

Year = FORMAT('Table'[date],"yyyy")
 
The column Quarter is dax like this:
Quarter = FORMAT('Table'[date],"q")
 
and the date is a measure i have in my Table like this format:
25/12/2022
 
But apparently my Quarter and Year columns are formatted as Text and Can't compare them with numbers , how do I change them ?
When I view the table I can't see those columns

 

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.