A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
=IF(A4="CAPITAL CALL", "CAPITAL CALL", IF(A4="Distribution", "Cash Distribution", IF(A4="Redemption", "Cash Distribution", "")))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
I want to create an excel where when data is entered in column A it auto-populates data in column B. I tried making a drop-down menu but that is kind of a pain. I would rather just type what I want in column A and have an answer populate with a formula in column B. I have a formula that works, but I am not sure how to add to it to make it work for three different options, if that's possible. Can you please assist?
In column A the only items I will have are:
CAPITAL CALL
DISTRIBUTION
REDEMPTION
In column B I need the following to populate:
Formula I used in column B:
=IF(A4="CAPITAL CALL", "CAPITAL CALL", " ")
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
This one worked great. Thank you!
This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.
Comments have been turned off. Learn more
=IF(A4="CAPITAL CALL", A4, "CASH " & A4)