Forum Discussion
AVERAGEIFS
- 5 years ago
calculated column=averagex(filter(table,table[vehicle]=earlier(table[vehicle])&&table[size]=earlier(table[size])&&table[color]=earlier(table[color])),table[price])
Hi there,
Similarly, I am trying to adapt the formula below from excel sheet to power bi.... is this even possible in power query? Where the column will get the average of amount considering based on 5 conditions (previous 4 weeks of the same week day , subgroup and subgroup2 and is greater than 0) and the result for that record will be used when it moves to the next record.
=IFERROR(AVERAGEIFS(amount,amount,">0",Weekday,Table1[@[Week Day]:[Week Day]],Subgroup,Table1[@[SubGroup]:[SubGroup]],Subgroup2,Table1[@[SubGroup2]:[SubGroup2]],date,">="&Table1[@[Date]:[Date]]-28),))
Thanks in advance.