Forum Discussion
netanel
4 years agoPost Prodigy
AVG Problem
Hey All!
This is my measure:
Net USD average per Day =
AVERAGEX(
KEEPFILTERS(VALUES('Date'[Date])),
CALCULATE(SUM('Revenues DB'[Net USD]))
)
I can not reach the exact amount
I think it's because the formula also calculates BLANK
How do I ignore BLANK in such a formula like this?
I think it's because the formula also calculates BLANK
How do I ignore BLANK in such a formula like this?
netanel ,
AVERAGEX(
(VALUES('Date'[Date])),
CALCULATE(SUM('Revenues DB'[Net USD]))
)or
AVERAGEX(
summarize('Revenues DB' , 'Date'[Date], "_1",
CALCULATE(SUM('Revenues DB'[Net USD])) ), [_1]
)
1 Reply
- amitchandakSuper User
netanel ,
AVERAGEX(
(VALUES('Date'[Date])),
CALCULATE(SUM('Revenues DB'[Net USD]))
)or
AVERAGEX(
summarize('Revenues DB' , 'Date'[Date], "_1",
CALCULATE(SUM('Revenues DB'[Net USD])) ), [_1]
)