Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hey All,
Thank you in advance for helping me out in this. I have a data where there is a column for continuous dates over last 10 months, I have to create a measure where I need to check whether the last 30 dates from today is present or not , if it is it then "No failures" if it doesn't thenn count the number of dates that are missing.
Kind Regards.
Solved! Go to Solution.
Hi @SS_1122 ,
You can try this measure to achieve your goal. My Sample has data from 2022/10/01 to 2022/12/12, today is 2022/11/14. Last 30 dates is from 2022/11/15 to 2022/12/14. So the measure result should return 2.
Last 30 dates from today is present or not =
VAR _Today =
TODAY ()
VAR _Last30Days =
CALENDAR ( _Today + 1, _Today + 30 )
VAR _ADDFlag =
ADDCOLUMNS (
_Last30Days,
"Flag", IF ( [Date] IN VALUES ( 'Table'[Date] ), 1, 0 )
)
VAR _Count =
COUNTX ( FILTER ( _ADDFlag, [Flag] = 0 ), [Date] )
RETURN
IF ( _Count = 0, "No failures", _Count )
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
To solve this problem, you can use a DAX formula in Power BI to create a measure that checks if the last 30 dates from today are present in the date column. If all dates are present, it returns "No failures"; if some dates are missing, it counts and returns the number of missing dates. Here’s how you can do it:
Measure =
VAR Last30Days =
FILTER(
ALL(YourTable),
YourTable[Date] >= TODAY() - 30 && YourTable[Date] <= TODAY()
)
VAR MissingDatesCount =
30 - COUNTROWS(Last30Days)
RETURN
IF(
MissingDatesCount = 0,
"No failures",
"Missing " & MissingDatesCount & " dates"
)
For more solutions and dynamic tools to help you calculate time periods, you can visit our website 30 days from today, where you'll find professional tools to assist in calculating time periods seamlessly.
DAX Measure:
My Count of last 30 days = CALCULATE ( DISTINCTCOUNT('Table'[Dates] ) , 'Table'[Dates] > DATEADD( DAY, -30, TODAY () )
Note this is 'airware', may not be totally accurate.
You may also need a second filter in the CALCULATE function of: 'Table'[Dates] < TODAY()
Proud to be a Super User! | |
This gives an error saying 'DATEADD' has been used as a tbale filter expression.
I tried something like this :
Last 30 days = CALCULATE ( DISTINCTCOUNT('Sheet1'[Dates] ) , 'Sheet1'[Dates] > DATEADD(Sheet1[Dates], -30, DAY() )
The data is only this
Hi @SS_1122 ,
You can try this measure to achieve your goal. My Sample has data from 2022/10/01 to 2022/12/12, today is 2022/11/14. Last 30 dates is from 2022/11/15 to 2022/12/14. So the measure result should return 2.
Last 30 dates from today is present or not =
VAR _Today =
TODAY ()
VAR _Last30Days =
CALENDAR ( _Today + 1, _Today + 30 )
VAR _ADDFlag =
ADDCOLUMNS (
_Last30Days,
"Flag", IF ( [Date] IN VALUES ( 'Table'[Date] ), 1, 0 )
)
VAR _Count =
COUNTX ( FILTER ( _ADDFlag, [Flag] = 0 ), [Date] )
RETURN
IF ( _Count = 0, "No failures", _Count )
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
124 | |
79 | |
50 | |
38 | |
38 |
User | Count |
---|---|
195 | |
80 | |
70 | |
51 | |
42 |