Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I want to make a measure that calculate a weighted average of how many minutes our customers have been actively shopping in our store but I can´t for the life of me figure out how to do this in DAX.
Say I have these two lines
minutesInStore | minutesQueue | Customers |
30 | 5 | 10 |
20 | 10 | 5 |
I want to figure out how long time the average customer have spend in my store actively shopping (minutesInStore-minutesQueue)
My normal go-to in SQL would be to make a column calculating the total minutes per line (minutesInStore-minutesQueue)*Customers as customerMinutes)
minutesInStore | minutesQueue | Customers | customerMinutes |
30 | 5 | 10 | 250 |
20 | 10 | 5 | 50 |
and then the sum of customerMinutes divided by customers (sum(customerMinutes)/sum(customers) as avgMinutes
(250+50)/(10+5)=20
But how can I replicate that in DAX?
Solved! Go to Solution.
Try
Avg Minutes =
VAR CustomerMinutes =
SUMX (
'Table',
( 'Table'[Minutes in store] - 'Table'[Minutes In Queue] ) * 'Table'[Customers]
)
VAR Customers =
SUM ( 'Table'[Customers] )
RETURN
DIVIDE ( CustomerMinutes, Customers )
Hi @MelisenDK
Thanks for reaching out to us.
I just want to confirm if you resolved this issue? If yes, you can accept the answer helpful as the solution or share you method and accept it as solution, thanks for your contribution to improve Power BI.
If you need more help, please let me know.
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Try
Avg Minutes =
VAR CustomerMinutes =
SUMX (
'Table',
( 'Table'[Minutes in store] - 'Table'[Minutes In Queue] ) * 'Table'[Customers]
)
VAR Customers =
SUM ( 'Table'[Customers] )
RETURN
DIVIDE ( CustomerMinutes, Customers )
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 |
---|---|
15 | |
10 | |
10 | |
10 | |
10 |
User | Count |
---|---|
19 | |
14 | |
13 | |
11 | |
8 |