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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Dan492813
Helper II
Helper II

Want measures to exclude calculation when date doesn't exist.

Completed hold stage for the top three rows hasn't got a completion date populated yet and it's defaulted to 44798.00

All the rows under this dont have a completion date for complaint actionable and it's doing the same thing. 

 

I want the DAX to give today's date if there is no completion date populated but only if the action EXISTS. I'm trying to get this to show the amount of time for each measure in days. 

 

Here are the two measures:

Completed Holding stage age =
VAR startdate = MAXX(FILTER('hgmcntac', hgmcntac[action_cd] = "C1001A"), hgmcntac[completed_dt])
VAR enddate = MAXX(FILTER('hgmcntac', hgmcntac[action_cd] = "C1002"), hgmcntac[completed_dt])
RETURN
ROUNDUP((enddate - startdate) * 1,0)
 
Complaint actionable =
VAR enddate = MAXX(FILTER('hgmcntac', hgmcntac[action_cd] = "C1001A"), hgmcntac[completed_dt])
VAR startdate = MAX(hgmcntct[taken_by_dt])
RETURN
ROUNDUP((enddate - startdate) * 1,0)

 

Dan492813_0-1661854602979.png

Thanks in advance, Dan

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @Dan492813 
Please try

Completed Holding stage age =
VAR startdate =
    MAXX (
        FILTER ( 'hgmcntac', hgmcntac[action_cd] = "C1001A" ),
        hgmcntac[completed_dt]
    )
VAR enddate =
    MAXX (
        FILTER ( 'hgmcntac', hgmcntac[action_cd] = "C1002" ),
        COALESCE ( hgmcntac[completed_dt], TODAY () )
    )
RETURN
    ROUNDUP ( ( enddate - startdate ) * 1, 0 )

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @Dan492813 
Please try

Completed Holding stage age =
VAR startdate =
    MAXX (
        FILTER ( 'hgmcntac', hgmcntac[action_cd] = "C1001A" ),
        hgmcntac[completed_dt]
    )
VAR enddate =
    MAXX (
        FILTER ( 'hgmcntac', hgmcntac[action_cd] = "C1002" ),
        COALESCE ( hgmcntac[completed_dt], TODAY () )
    )
RETURN
    ROUNDUP ( ( enddate - startdate ) * 1, 0 )

You're a star. As always.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors