Forum Discussion
ElodiePignato
2 years agoRegular Visitor
DAX formula - Average
Hello everyone ! I have an issue with a DAX formula. I have a table named "Incomind documents". It's one row per ticket (workload), a column with the status (done, on hold, to treat, etc.) an...
ElodiePignato
2 years agoRegular Visitor
Hi Dangar332 this formula gives a whole different result :
The previous DAX formula was "better".
I checked with the table "Incoming documents" via Excel and this is the numer of incoming tickets per month :
So the average should be around 5k
Dangar332
2 years agoResident Rockstar
hi, ElodiePignato
try to update previous formula
result =
var a = eomonth(today(),-13)+1
return
averagex(
filter('Incomind documents',
'Incomind documents'[reception date]>=a &&
'Incomind documents'[reception date]<=today()
),
'Incomind documents[workload]
)
if not work then provide some sample data