March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
18 | |
16 | |
13 |