Forum Discussion
esmat
3 years agoRegular Visitor
summarize a table
Hi All, I have a table with multi currency conversion factors, would like to summarize this table based on monthly average while maintaining all columns. table is below
johnt75
3 years agoSuper User
You could use something like
Monthly summary =
ADDCOLUMNS (
SUMMARIZE ( 'Currency table', 'Date'[Year month] ),
"Avg USD", CALCULATE ( AVERAGE ( 'Currency table'[Value.USD] ) ),
"Avg JPY", CALCULATE ( AVERAGE ( 'Currency table'[Value.JPY] ) )
)
esmat
3 years agoRegular Visitor
I got an error message as below