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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
zx00289
New Member

Calculate quarter-to-date values with starting month from February in Dax

Hi,

 

I have a set of data that would like to calculate the demand in quater-to-date.

zx00289_0-1665018846064.png

My financial year starts from February hence my quarter-to-date value for Q1 would be 26591+39276+24091=89958, Q2 would be 97159 and etc. 

 

I have created a data table as below:

Date =
VAR FirstDayOfWeek = 0 -- 0 = Sunday, 1 = Monday, ...
RETURN
GENERATE (
CALENDARAUTO (),
VAR Yr =
YEAR ( [Date] ) -- Year Number
VAR Mn =
MONTH ( [Date] ) -- Month Number (1-12)
VAR Qr =
QUARTER ( [Date] ) -- Quarter Number (1-4)
VAR MnQ = Mn - 3 * ( Qr - 1 ) -- Month in Quarter (1-3)
VAR Wd =
WEEKDAY ( [Date], 1 ) - 1 -- Weekday Number (0 = Sunday, 1 = Monday, ...)
RETURN
ROW (
"Year", DATE ( Yr, 12, 31 ),
"Year Quarter", FORMAT ( [Date], "\QQ-YYYY" ),
"Year Quarter Date", EOMONTH ( [Date], 3 - MnQ ),
"Quarter", FORMAT ( [Date], "\QQ" ),
"Year Month", EOMONTH ( [Date], 0 ),
"Month", DATE ( 2000, MONTH ( [Date] ), 1 ),
"Fiscal Month No",
IF ( MONTH ( [Date] ) >= 2, MONTH ( [Date] ) - 1, MONTH ( [Date] ) + 11 ),
"Fiscal Quarter",
"Q" & IF (MONTH( [Date] ) = 1, QUARTER( [Date]) + 3 , IF(MONTH([Date]) IN {4, 7, 10}, QUARTER([Date])-1, QUARTER([Date]))),
"Fiscal Year",
IF ( MONTH ( [Date] ) >= 2, DATE ( ( Yr + 1 ), 12, 31 ), DATE ( Yr, 12, 31 ) )
)
)
 
How should I get the demand value in quater-to-date using Dax?
 
Thanks.
 
1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

Hi @zx00289 ,

I created a sample pbix file(see the attachment), please check if that is what you want.

yingyinr_1-1665122776948.png

yingyinr_0-1665122745454.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yiruan-msft
Community Support
Community Support

Hi @zx00289 ,

I created a sample pbix file(see the attachment), please check if that is what you want.

yingyinr_1-1665122776948.png

yingyinr_0-1665122745454.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.