The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Trying to average a column for each day, but there are multiple rows for each date. I then need to sum these averages for the week based off a label. The label is "Winter Week 1", which continues through week 8.
I need to show on a graph the weekly sum on the Y axis, and the Week Name and Number on the X-Axis, basically with 8 numbers.
Attached is an example of my table
Solved! Go to Solution.
Hi @SSGUY
Please try
=
SUMX (
VALUES ( 'Table'[Date] ),
CALCULATE (
AVERAGE ( 'Table'[Value] )
)
)
Hi @SSGUY
Please try
=
SUMX (
VALUES ( 'Table'[Date] ),
CALCULATE (
AVERAGE ( 'Table'[Value] )
)
)
Yes! Thanks you!
User | Count |
---|---|
15 | |
8 | |
6 | |
6 | |
5 |
User | Count |
---|---|
23 | |
13 | |
13 | |
8 | |
8 |