Adding an average bar to chart

Options

I have the following chart and I'd like to add a dynamic average bar that would change for each value on the x-axis. In other words, this "average" would be plotted for each month and should change with each month such that it represents the average of all values for that given month. The result should not be constant across all months.

Is this doable?



Best Answer

  • jaeW_at_Onyx
    jaeW_at_Onyx Coach
    Answer ✓
    Options

    Append the dataset onto itself and replace the 'country' with 'Average'.

    Write a beast mode,

    case when country = 'average' then avg(amount) else sum(amount) end
    


    Jae Wilson
    Check out my 🎥 Domo Training YouTube Channel 👨‍💻

    **Say "Thanks" by clicking the ❤️ in the post that helped you.
    **Please mark the post that solves your problem by clicking on "Accept as Solution"

Answers

  • jaeW_at_Onyx
    jaeW_at_Onyx Coach
    Answer ✓
    Options

    Append the dataset onto itself and replace the 'country' with 'Average'.

    Write a beast mode,

    case when country = 'average' then avg(amount) else sum(amount) end
    


    Jae Wilson
    Check out my 🎥 Domo Training YouTube Channel 👨‍💻

    **Say "Thanks" by clicking the ❤️ in the post that helped you.
    **Please mark the post that solves your problem by clicking on "Accept as Solution"
  • user060355
    Options

    What do you mean by "append the dataset onto itself"?

  • GrantSmith
    Options

    @user060355

    @jaeW_at_Onyx is suggesting you take your data, replace the country column with the 'average' value, then append that back to the original dataset.

    It'll look something like this:

    Then you can utilize his beast mode to plot the average instead of the sum for the average amount.

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**
  • user060355
    Options

    @GrantSmith @jaeW_at_Onyx

    Genius! Mind blown :)

    Thank you!