Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Solved! Go to Solution.
Hi @esmat
Of course you need to include all other columns
Summary Table =
GROUPBY (
ADDCOLUMNS ( 'Table', "Month Year", FORMAT ( 'Table'[Day], "MMM YYYY" ) ),
[Month Year],
"Value.USD", AVERAGEX ( CURRENTGROUP (), [Value.USD] ),
"Value.JPY", AVERAGEX ( CURRENTGROUP (), [Value.JPY] ),
"Value.BGN", AVERAGEX ( CURRENTGROUP (), [Value.BGN] )
)
thank you very much
it worked perfectly
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] ) )
)
I got an error message as below
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
7 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |