Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Here we have found a simple way to find out the average sales for the calender month.
Calender Qunatity Sum =
Var startMonth = Date(Year(Today()),1,1)
Var EndMonth = EOMONTH ( TODAY (),-1)
Return
Calculate(SUMX(Table Name,Qunatiy Column),
Filter(All(Table Name),
'Date Table >= startMonth &&
'Date Table<= EndMonth
)
)
Calender Quantity Average =
Var Month = MONTH(TODAY()) - 1
return
divide(Calender Qunatity Sum,Month,0)
@Deepankar989P , Make sure you have month year columns
Calculate(SUMX(Values('Date Table'[month Year]),calculate(Sum('Date Table'[Qunatiy Column]))),
Filter(All('Date Table'),
'Date Table' >= startMonth &&
'Date Table'<= EndMonth
)
)
User | Count |
---|---|
13 | |
10 | |
8 | |
7 | |
5 |
User | Count |
---|---|
24 | |
16 | |
15 | |
10 | |
7 |