I have 3 columns in my Pivot Table.
Status
Month (Filtered for January and February)
Revenue
The "Status" column will contain a conditional format as follows:
If Revenue for February is greater than Revenue for January then "Good" else "Bad".
Not sure how to pull this off. Can I use a FILTER statement or is it better to use a CASE statement here or is it possible to use both: I have tried below but it did not work.
CASE WHEN
FILTER(Revenue USING (Month = 'February')) > FILTER(Revenue USING (Month = 'January')) THEN 'Good'
ELSE 'Bad'
END
Any ideas are welcome.