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
DBNN
Frequent Visitor

Datesbetween for multiple conditions

Hi,  

I have a set of conditions that occur at certain dates.   I am looking for an easy way to count the number of days between the occurences and then calculate the standard deviation of all these times in between.  My table is simple but I can not find the right way to do this with a measure

 

ConditionDate
110-Mar
215-Mar
327-Mar
114-Mar
216-Mar
331-Mar
220-Mar
32-Apr
120-Mar
1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @DBNN 

1. Place Table1[Condition] in a table visual

2. Place this measure in the visual

Measure = 
STDEVX.P(
    ADDCOLUMNS (
        DISTINCT ( Table1[Date] ),
        "@DaysBetween",
            VAR current_ = Table1[Date]
            VAR next_ = CALCULATE ( MIN ( Table1[Date] ), Table1[Date] > current_ )
            RETURN
                IF ( NOT ISBLANK ( next_ ), next_ - current_ )
    ),
    [@DaysBetween]
)

See it all at work in the attached file.

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

View solution in original post

1 REPLY 1
AlB
Super User
Super User

Hi @DBNN 

1. Place Table1[Condition] in a table visual

2. Place this measure in the visual

Measure = 
STDEVX.P(
    ADDCOLUMNS (
        DISTINCT ( Table1[Date] ),
        "@DaysBetween",
            VAR current_ = Table1[Date]
            VAR next_ = CALCULATE ( MIN ( Table1[Date] ), Table1[Date] > current_ )
            RETURN
                IF ( NOT ISBLANK ( next_ ), next_ - current_ )
    ),
    [@DaysBetween]
)

See it all at work in the attached file.

 

SU18_powerbi_badge

Please accept the solution when done and consider giving a thumbs up if posts are helpful. 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

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.

Top Solution Authors