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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

period table creation

hi 

i was looking for dax  to create a period table 

from where i can pick a period like rolling 6 months, last quarter etc...

i have listed time period l am looking to create

greeshma_0-1612894939278.png

greeshma_1-1612895018148.png

 

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

Hi @Anonymous ,

 

Indeed, it will be a little troublesome to use dax.

 

1.Create a calendar table and a category table.

46.png

Table = CALENDAR(DATE(2020,1,1),DATE(2021,12,31))

43.png

 

2.Create a relationship between calendar table and main table.

45.png

 

3.Create the measure

FilteredValue =
SWITCH (
    SELECTEDVALUE ( 'Table (2)'[Category] ),
    "Today", CALCULATE ( SUM ( MainTable[Value] ), FILTER ( 'Table', [Date] = TODAY () ) ),
    "Yesterday",
        CALCULATE (
            SUM ( MainTable[Value] ),
            FILTER ( 'Table', [Date] = TODAY () - 1 )
        ),
    "Month to Date",
        CALCULATE (
            SUM ( MainTable[Value] ),
            DATESINPERIOD ( 'Table'[Date], TODAY (), -1, MONTH )
        ),
    "Rolling 7 days",
        CALCULATE (
            SUM ( MainTable[Value] ),
            FILTER ( 'Table', [Date] <= TODAY () && [Date] >= TODAY () - 6 )
        )
)

 

You can check more details from here.

 

Best Regards,

Stephen Tao

 

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

3 REPLIES 3
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

Indeed, it will be a little troublesome to use dax.

 

1.Create a calendar table and a category table.

46.png

Table = CALENDAR(DATE(2020,1,1),DATE(2021,12,31))

43.png

 

2.Create a relationship between calendar table and main table.

45.png

 

3.Create the measure

FilteredValue =
SWITCH (
    SELECTEDVALUE ( 'Table (2)'[Category] ),
    "Today", CALCULATE ( SUM ( MainTable[Value] ), FILTER ( 'Table', [Date] = TODAY () ) ),
    "Yesterday",
        CALCULATE (
            SUM ( MainTable[Value] ),
            FILTER ( 'Table', [Date] = TODAY () - 1 )
        ),
    "Month to Date",
        CALCULATE (
            SUM ( MainTable[Value] ),
            DATESINPERIOD ( 'Table'[Date], TODAY (), -1, MONTH )
        ),
    "Rolling 7 days",
        CALCULATE (
            SUM ( MainTable[Value] ),
            FILTER ( 'Table', [Date] <= TODAY () && [Date] >= TODAY () - 6 )
        )
)

 

You can check more details from here.

 

Best Regards,

Stephen Tao

 

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

 

 

manikumar34
Solution Sage
Solution Sage

It is better to create in Excel or SQL.

 

Regards, 

Manikumar





If this helps, Appreciate your KUDOS!
Did I answer your question? Mark my post as a solution!


Proud to be a Super User!




PaulDBrown
Community Champion
Community Champion

@Anonymous 

Probably simpler to create the table in Excel and import it, no?





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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