Conditional Formula - With 2 Columns

SeanLCA

New Member
Joined
Nov 3, 2018
Messages
15
Office Version
  1. 365
Platform
  1. Windows
hello,

Need help with putting a conditional formula.

ColA = Purpose
ColB=Cash Out
ColC =Blank.

I need a formula that will fill Col C, if Col A and Col B is given.
Exp. If Col A= Refinance, ColB=N then ColC= Rate&Term
Exp. If Col A= Purchase, ColB=N then ColC= Purchase
Exp. If ColA = Refinance, ColB=Y then ColC= Cash Out



Purpose Cashout Blank (ColC)
Refinance N Rate&Term
Purchase N Purchase
Purchase N Purchase
Purchase N Purchase
Purchase N Purchase
Purchase N Purchase
Refinance Y Cash Out
Purchase N Purchase
Refinance N Rate&Term
Refinance Y Cash Out
Refinance Y Cash Out
Purchase N Purchase


Thanks!
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Cross posted Conditional Formula - With 2 Columns

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules). This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0
How about
=IF(A2="Refinance",IF(B2="N","Rate&Term",IF(B2="Y","Cash Out","??")),IF(AND(A2="Purchase",B2="N"),"Purchase","??"))
 
Upvote 0

Forum statistics

Threads
1,215,477
Messages
6,125,030
Members
449,205
Latest member
Eggy66

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