Hi Kathy,
It depends on how accurate you want to be in determining the passage of months.
One simple way is:
=IF((MONTH(G3)-MONTH(B3))<6,C3*E3,C3*E3*0.5)
If you want to have it to the day:
=IF(AND((MONTH(G3)-MONTH(B3))>5,DAY(G3)>DAY(B3)),C3*E3*0.5,C3*E3)
I haven't tried all possibilities and there is a problem after a start date of June so I will have to think a bit more about that so this is very much an interim solution.
Regards
Harry