Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
esmat
Regular 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 

esmat_0-1682330114725.png

 

 

1 ACCEPTED SOLUTION

@esmat 
This is a calculated table not a measure

View solution in original post

6 REPLIES 6
tamerj1
Super User
Super User

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] )
)

Hi @tamerj1 

I obtained an error message as shown in yellow below

 

esmat_1-1682333639878.png

 

@esmat 
This is a calculated table not a measure

thank you very much 

it worked perfectly 

johnt75
Super User
Super 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] ) )
)

I got an error message as below

 

esmat_0-1682333408917.png

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.