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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Balhemkan
Helper III
Helper III

Month average

Hi Team, 

 

I have one transaction table on that i have values from Jan -2022 to Jan - 2023

But Oct data is missing in that. Month itself not available in transaction data.

 

I have Date table and Transaction table

In date table i have Date Column

In Transaction table i have two Columns Date column and Sales Amount

I give join from Date table Date column to Transaction Table Date Column

My requirement is if i select only one month in Date table Date column I need to get sum of Sales amount for that particular month. If i select more than one month in Date column i need to get Average for selected months.

 

I written below formula

 

Countmonths =  MONTH(COUNT(Date_table[date]))

 

Sales =

IF([countmonths]<=1,SUM(Facttable[Sales]),IF([countmonths]>1,SUM(Facttable'[Sales])/[countmonths]))

 

This is working if i select Jan-22 to Sep -22 but if i select Oct to dec its not working properly because oct-22 is not available

 

Thanks, 

Balhemkan

1 REPLY 1
MohammadLoran25
Solution Sage
Solution Sage

Hi @Balhemkan 

To get your problem solved:

 

At first make a measure:

SalesAmount=SUM(Facttable'[Sales])

 

Then make another measure for your Average as below which refers to previous measure:

 

AVERAGESalesAmount=

AVERAGEX(VALUES(Date_Table[YearMonth]),[SalesAmount])
 
If this answer solves your problem, please mark it as an accepted solution so the others would find what they need easier.
Regards,
Loran

Helpful resources

Announcements
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors
Top Kudoed Authors