Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
11 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
11 |