IF THEN Divide Assistance Needed
BelyndaP
✭✭
I am trying to reference one column and if the column meets criteria, to pull number from another column and divide by 12 in a third column.. Let me know what I may be doing wrong here... Thanks
=(IF([Contract Type]@row = "One Year", [Contract Amount]@row / $[Contract Amount]$12))
Once this is figured out, I want to add an = "Two Year" and = "Three Year" to the formula as well. Any assistance will be greatly appreciated.
Best Answer
-
@BelyndaP try this.
=(IF([Contract Type]@row = "One Year", [Contract Amount]@row / 12))
Answers
-
@BelyndaP try this.
=(IF([Contract Type]@row = "One Year", [Contract Amount]@row / 12))
-
THANK YOU!! You had to have hit the "That is Easy button!" I was making it much more complicated than what it was.