Beast Mode

Beast Mode

How to calculate % change between these two years in a beast mode on several columns of data?

IF I SOLVED YOUR PROBLEM, PLEASE "ACCEPT" MY ANSWER AS A SOLUTION. THANK YOU!

Welcome!

It looks like you're new here. Members get access to exclusive content, events, rewards, and more. Sign in or register to get started.
Sign In

Best Answer

  • Answer ✓

    I know you are asking for a Beast Mode solution but I hope this is helpful to consider.

    One way to do this is to Unpivot your data, then use a beast mode for each year as a column in a pivot table.

    Your columns would end up being along the lines of: Metric Label, 2022, 2023

    2022 defined as:

    1. CASE WHEN YEAR(`Date`) = '2022' then `Value` else 0 end

    2023 defined as:

    1. CASE WHEN YEAR(`Date`) = '2022' then `Value` else 0 end

    You'd end up with a table very similar to what you show in your example, and with some tweaking on the coloring and heading rows would likely satisfy the requirement.

Answers

  • Contributor

    Hi, what does the underlying data look like?

  • Contributor

    IF I SOLVED YOUR PROBLEM, PLEASE "ACCEPT" MY ANSWER AS A SOLUTION. THANK YOU!

  • Answer ✓

    I know you are asking for a Beast Mode solution but I hope this is helpful to consider.

    One way to do this is to Unpivot your data, then use a beast mode for each year as a column in a pivot table.

    Your columns would end up being along the lines of: Metric Label, 2022, 2023

    2022 defined as:

    1. CASE WHEN YEAR(`Date`) = '2022' then `Value` else 0 end

    2023 defined as:

    1. CASE WHEN YEAR(`Date`) = '2022' then `Value` else 0 end

    You'd end up with a table very similar to what you show in your example, and with some tweaking on the coloring and heading rows would likely satisfy the requirement.

Welcome!

It looks like you're new here. Members get access to exclusive content, events, rewards, and more. Sign in or register to get started.
Sign In