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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.