Forum Discussion
Anonymous
5 years agoNot applicable
AVERAGEIFS
Id like to build a new column in my PowerBI table called "average". the formula that builds the average column I want to be similar to how excel's AVERAGEIFS folrmula works. Meaning the content of ...
- 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])
wdx223_Daniel
5 years agoCommunity Champion
calculated column=averagex(filter(table,table[vehicle]=earlier(table[vehicle])&&table[size]=earlier(table[size])&&table[color]=earlier(table[color])),table[price])
Anonymous
5 years agoNot applicable
That's it, thank you!!!