Forum Discussion
Anonymous
2 years agoNot applicable
average based on date slicer
hi dears i need to get the average of transactins based on date slicer currently i inserted a visual card which will show me the count of transactions per date slicer and it works fine bu...
- Anonymous2 years ago
Hi Anonymous ,
I have tested sudhisami_azure 's solution and there is no error, here is the test results:Total = COUNT('Table'[Count])Average = AVERAGEX(VALUES('Table'[Date]), [Total])60 / 28 =2.14285......
Or you can try:Average 2 = VAR _Date = DISTINCTCOUNT('Table'[Date]) RETURN [Total] / _Date
If you still can't implement it, then there is a problem with your data structure and not with DAX, as ryan_mayu said, please provide sample data or a pbix file.
Best Regards,
Dino Tao
If this post helps, then please consider Accept both of the answers as the solution to help the other members find it more quickly.
ryan_mayu
Super User
2 years agoAnonymous
maybe you can try this
avearge= total transactions / datediff((min(submitted date),max(submitted date),day)
- Anonymous2 years agoNot applicable
it is not working brother