I want to calculate the percentage difference between Qtrs in Pivot table

it's like I want a col where I need to calculate the difference between Q1 and Q2 percentages

Answers

  • Hi @gokul,

    Could you please share the formula you are using for "% for col total"? In general, you can use CASE logic like:

    (CASE WHEN QUARTER(Date) = 2 THEN "% for col total"
    ELSE 0
    END) - (CASE WHEN QUARTER(Date) = 1 THEN "% for col total"
    ELSE 0 END)

    If you found this post helpful, please use 💡/💖/👍/😊 below! If it solved your problem, don't forget to accept the answer.