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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
SwathiKundar
Frequent Visitor

Average Daily Spend

Hello All.

I need to calculate the Average Daily Spend.

Average Daily Spend = Total cost / Avg Days for the selected period.
ex: If we select the period 1 to 25 then Average days should be 25.

currently  total rows of Average Daily Spend column in average. But I need to show it in SUM instead of AVERAGE.
According to the below DAX, logic is working fine except for total rows.

Avg Days =

var startofthisperiod = FIRSTDATE(Dates[Date])

var endofthisperiod =LASTDATE(Dates[Date])+1

var noOfDays = DATEDIFF (startofthisperiod, endofthisperiod,DAY)

return

noOfDays



AVG Daily Spend =

DIVIDE(SUM(Table[Cost]),

[Avg Days]

)

 

 

 

Thanks in Advance.
Swathi Kundar

4 REPLIES 4
V-lianl-msft
Community Support
Community Support

Hi @SwathiKundar ,

 

Please try to create a measure like below:

Measure = SUMX(VALUES('Table'[Month]),[AVG Daily Spend])

Vlianlmsft_0-1638857059821.png

 

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

AlexisOlson
Super User
Super User

It's possible but that's a pretty strange total to show. How do you interpret it? What does that sum of averages represent?

If it's possible then how achieve it.

You'd need to iterate over one level of granularity where you take the average below that level and sum up those averages. I can't tell what determines what level of granularity you want to change your aggregation rule at though.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.