Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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
I'm expecting the end result to look like this
Thanks,
Naveen
Solved! Go to Solution.
Hi @navenn08
Please try
AVG_RECEIPTS =
IF (
[TOT_REC] <> BLANK (),
CALCULATE (
AVERAGEX (
VALUES ( 'DATE'[Date] ),
CALCULATE ( DISTINCTCOUNT ( CO_DLY_sample[CLM_NUMBER] ) )
),
ALLSELECTED ()
)
)
Hi @navenn08
Please try
AVG_RECEIPTS =
IF (
[TOT_REC] <> BLANK (),
CALCULATE (
AVERAGEX (
VALUES ( 'DATE'[Date] ),
CALCULATE ( DISTINCTCOUNT ( CO_DLY_sample[CLM_NUMBER] ) )
),
ALLSELECTED ()
)
)
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.