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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

How to find amount of days between quarters & amount of days between end of quarter and today?

Hi there!

 

I'm trying to find out two separate values:

 

1. The amount of days in a quarter. I am using a 'source_data_view'[date] field, although in my report it I only have two filters: Quarter and Fiscal Year (single select).

 

So, if I choose Q1 2020, then the date range will be between 10/1/2019 and 12/31/2019, and it will return 91 days.

 

2. The amount of days between the last of the selected quarter minus today.

 

So, if I choose Q1 2020, then it will show the last day of the quarter minus today.

 

Meaning, the last day of Q1 2020, 12/31/2019 minus today, 3/10/2021, would return -435 days.

 

 

 

1 ACCEPTED SOLUTION

Hi @Anonymous ,

Try the following formula:

QuarterDay = 
DATEDIFF(
    MINX(
        ALLSELECTED(source_data_view),
        source_data_view[Date]
    ),
    MAXX(
        ALLSELECTED(source_data_view),
        source_data_view[Date]
    ),
    DAY
)
Q_End_Today = 
-DATEDIFF(
    MAXX(
        ALLSELECTED(source_data_view),
        source_data_view[Date]
    ),
    TODAY(),
    DAY
)

image.png

This is my PBIX file.

https://microsoftapc-my.sharepoint.com/:u:/g/personal/v-lazhang_microsoft_com/EVaSs5EZpcFBrhNv90zQHuYB_QXpGmFmeHNdNLCr7IkVeg?e=QDEZAK

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

Best Regards,
Winniz

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
amitchandak
Super User
Super User

@Anonymous , Not very  clear

Assume the qtr coming from a date table

Measure =

var _min = minx(allselected(Date), Date[Date])

var _max = today()

return

datediff(_min ,_max, day)

Anonymous
Not applicable

Thanks, @amitchandak,

 

However, when I create a measure for the var_min, when I try to enter DATE['source_data_view'[Date], it gives me an error with the red underline.

Hi @Anonymous ,

Try the following formula:

QuarterDay = 
DATEDIFF(
    MINX(
        ALLSELECTED(source_data_view),
        source_data_view[Date]
    ),
    MAXX(
        ALLSELECTED(source_data_view),
        source_data_view[Date]
    ),
    DAY
)
Q_End_Today = 
-DATEDIFF(
    MAXX(
        ALLSELECTED(source_data_view),
        source_data_view[Date]
    ),
    TODAY(),
    DAY
)

image.png

This is my PBIX file.

https://microsoftapc-my.sharepoint.com/:u:/g/personal/v-lazhang_microsoft_com/EVaSs5EZpcFBrhNv90zQHuYB_QXpGmFmeHNdNLCr7IkVeg?e=QDEZAK

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

Best Regards,
Winniz

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

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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