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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
MartinDra
Frequent Visitor

How to show total sales using date table in periods from date

I have a request to show data in 3 month periods, 

there will be sale that started in 2016 but closed in 2022, so we need to show this as 72 months, 

this will be calculated with each year starting from q1 = 3 Months, q2 = 6 Months, q3 = 9 Months and so on,.

 

E.g

MartinDra_0-1669288830389.png

How can this be done using dax ?

or is it better to go to sql to calculate this? 

 

1 ACCEPTED SOLUTION
v-yinliw-msft
Community Support
Community Support

Hi @MartinDra .

 

You can try this method:

I create two sample tables in two years, Period table and Sales table.

Then we need to calculate the year and the quarter:

New columns:

Year = YEAR('Sales'[Date])
Quar = QUARTER('Sales'[Date])

Then 

Var = 'Sales'[Year] - MIN('Sales'[Year])
Index = 'Sales'[Var] * 4 + Sales[Quar] 
SUMEVERYQ =
CALCULATE (
    SUM ( Sales[Sales] ),
    FILTER (
        'Sales',
        'Sales'[Year] = EARLIER ( Sales[Year] )
            && 'Sales'[Quar] = EARLIER ( Sales[Quar] )
    )
)

For the period table,

New a column:

M = MID('Period'[Period],1,2) / 3

The M column need to change to the whole number format.

The result column is :

Result =
CALCULATE (
    AVERAGE ( Sales[SUMEVERYQ] ),
    FILTER ( 'Sales', 'Sales'[Index] = 'Period'[M] )
)

vyinliwmsft_2-1669344697485.png

 

Hope these help you.

Here is my PBIX file.

 

Best Regards,

Community Support Team _Yinliw

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

2 REPLIES 2
MartinDra
Frequent Visitor

Hi, 

 

thanks. I think its close but not exactly what I need. 

I need an ability to show year as well.

MartinDra_0-1675182021376.png

so we can see progression over time, 

if I just have the period it only we are limited with the number of months since begining. 

So in Data Warehouse side it isnt going to work. 

 

Any ideas on how to achieve the above?

v-yinliw-msft
Community Support
Community Support

Hi @MartinDra .

 

You can try this method:

I create two sample tables in two years, Period table and Sales table.

Then we need to calculate the year and the quarter:

New columns:

Year = YEAR('Sales'[Date])
Quar = QUARTER('Sales'[Date])

Then 

Var = 'Sales'[Year] - MIN('Sales'[Year])
Index = 'Sales'[Var] * 4 + Sales[Quar] 
SUMEVERYQ =
CALCULATE (
    SUM ( Sales[Sales] ),
    FILTER (
        'Sales',
        'Sales'[Year] = EARLIER ( Sales[Year] )
            && 'Sales'[Quar] = EARLIER ( Sales[Quar] )
    )
)

For the period table,

New a column:

M = MID('Period'[Period],1,2) / 3

The M column need to change to the whole number format.

The result column is :

Result =
CALCULATE (
    AVERAGE ( Sales[SUMEVERYQ] ),
    FILTER ( 'Sales', 'Sales'[Index] = 'Period'[M] )
)

vyinliwmsft_2-1669344697485.png

 

Hope these help you.

Here is my PBIX file.

 

Best Regards,

Community Support Team _Yinliw

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

 

 

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

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! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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