Forum Discussion
BrettM
2 years agoFrequent Visitor
Average Weekly Sales
I need to include the Average value of the below 8 - week average of our $ by Reason Code. Is there a way to include in the chart the value of the $ amount over the 8 week period?
MFelix
Super User
2 years agoHi BrettM ,
For this you need to have a new table with the values of your Reason Code and a 8 Week average value then create a measure similar to:
Table:
| Reason Code | ID |
| AR | 1 |
| UR | 2 |
| SR | 3 |
| 8 Week | 4 |
Measure
Value for chart = SWITCH ( SELECTEDVALUE(NewTable[Reason Code]),
"8 Week", [Measure for 8 week],
CALCULATE([Measure for other values], Table[ReasonCode] in Values (NewTable[Reason Code])
Now use the new table values as a legend on your chart.