Hi all,
I have the following simple if statement which says if the number in G is bigger than in F, return "Overpaying" and if less than F return Underpaying.
I want to add a third statement to this, to return "Neither" if the value in G is the same as F
I have the following simple if statement which says if the number in G is bigger than in F, return "Overpaying" and if less than F return Underpaying.
I want to add a third statement to this, to return "Neither" if the value in G is the same as F
VBA Code:
=IF(G1978>C1978,"OVERPAYING","UNDERPAYING")