The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
Solved! Go to 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
)
This is my PBIX file.
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.
@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)
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
)
This is my PBIX file.
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.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
112 | |
81 | |
78 | |
43 | |
37 |
User | Count |
---|---|
157 | |
112 | |
64 | |
60 | |
54 |