DAX - Quarter and Half Year Formula

jon999

New Member
Joined
Aug 24, 2015
Messages
39
Office Version
  1. 365
Platform
  1. Windows
Hi

Is there a DAX formula where you can sum up each quarter and half year.

For example

Jul Aug Sep Oct Nov Dec Q1 Q2 H1
Sales 100 200 300 400 500 600 600 1,500 2,100


Thanks

Jon
 
Last edited:

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
If you have a Calendar Table in your model, simply add a Quarter Column that you can include in your pivot in the columns fields.
Code:
Quarter = VALUE ( FORMAT ( 'Calendar'[Date], "Q" ) )
For the Semester Column:

Code:
Semester =QUOTIENT( 'Calendar'[Quarter] + 1 , 2 )
The Italians have an excellent reference for Time Intelligence calculations in their DAX Patterns website.

I hope it helps.
 
Upvote 0

Forum statistics

Threads
1,225,692
Messages
6,186,469
Members
453,358
Latest member
Boertjie321

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top