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

Shape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.

Reply
navenn08
New Member

DAX ALLSELECTED DISPLAYING BLANKS

Hi All,

I'm trying to create an Average for a count distinct on a time series data, using the below formula i managed to create an Average line

 

AVG_RECEIPTS =
CALCULATE(
    AVERAGEX(Values('DATE'[Date]), CALCULATE( DISTINCTCOUNT(CO_DLY_sample[CLM_NUMBER]))), ALLSELECTED())
 
but how can i avoid displaying those dates with blank values
 

navenn08_0-1682531411001.png

I'm expecting the end result to look like this 

navenn08_1-1682531728864.png

 

Thanks,

Naveen

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @navenn08 
Please try

AVG_RECEIPTS =
IF (
    [TOT_REC] <> BLANK (),
    CALCULATE (
        AVERAGEX (
            VALUES ( 'DATE'[Date] ),
            CALCULATE ( DISTINCTCOUNT ( CO_DLY_sample[CLM_NUMBER] ) )
        ),
        ALLSELECTED ()
    )
)

View solution in original post

2 REPLIES 2
navenn08
New Member

@tamerj1  It worked now. Thanks

tamerj1
Super User
Super User

Hi @navenn08 
Please try

AVG_RECEIPTS =
IF (
    [TOT_REC] <> BLANK (),
    CALCULATE (
        AVERAGEX (
            VALUES ( 'DATE'[Date] ),
            CALCULATE ( DISTINCTCOUNT ( CO_DLY_sample[CLM_NUMBER] ) )
        ),
        ALLSELECTED ()
    )
)

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.