I'm looking for a way to change the name of the legend of the graph without changing the data?
Asked
Active
Viewed 7,437 times
2

rushi
- 225
- 1
- 3
- 7
-
Hey, did my post answer your question? If so, would you mind accepting and upvoting the solution? – Matt Kocak Apr 19 '22 at 08:25
1 Answers
1
Unfortunately, you can't do this directly in the format page. You'll either have to create another column that contains a user-friendly name for your data. Then use that as the legend.
Ex.
Legend = SWITCH(
TRUE,
Table[Lag Days] <= 3, "Low",
Table[Lag Days] <= 7, "Medium",
Table[Lag Days] <= 30, "High",
"Extreme"
)
Or maybe use grouping to create the legend names that you would like.

Matt Kocak
- 736
- 2
- 6
- 25