cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

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
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors