Month over Month Increase or Decrease

taudano

New Member
Joined
Apr 22, 2011
Messages
4
I am missing one set of criteria I cannot figure out in the formula below. I am working on a method to indicate whether a core keyword rank in search engines has increased, decreased or remained same month over month.

=IF(AND(CV7<DJ7),"#",IF(AND(CV7>DJ7),"$",IF(AND(CV7=DJ7)," ")))

CV7 = May rank and DJ7 = April rank

I am using wingdings3 font to show:
- Up arrow (#) if CV7 (May rank) is lower than DJ7 (April rank)
- Down arrow ($) if CV7 (May rank) is higher than DJ7 (April Rank)
- If CV7 and DJ7 are equal value, a blank cell (or a space, " ")

The part I cannot figure out is if DJ7 (April rank) is blank, but CV7 (May rank) has a value, I want to show an up arrow. Any ideas of how to add that to this formula?
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
The part I cannot figure out is if DJ7 (April rank) is blank, but CV7 (May rank) has a value, I want to show an up arrow. Any ideas of how to add that to this formula?

This should work...

=IF(OR(CV7="",DJ7 < CV7),"#",IF(DJ7>CV7,"$",""))

FYI. The formula you posted is probably not displaying what you intended. When posting a "less than" < symbol on this board, you need to put spaces around it or it is interpreted as a special character.
 
Upvote 0

Forum statistics

Threads
1,224,503
Messages
6,179,136
Members
452,890
Latest member
Nikhil Ramesh

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top