Share via

formula to auto-populate data

Anonymous
2024-11-25T16:04:03+00:00

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", " ")

Microsoft 365 and Office | Excel | For business | Windows

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.

0 comments No comments

Answer accepted by question author

Anonymous
2024-11-25T16:21:59+00:00

=IF(A4="CAPITAL CALL", "CAPITAL CALL", IF(A4="Distribution", "Cash Distribution", IF(A4="Redemption", "Cash Distribution", "")))

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Anonymous
    2024-11-25T16:31:41+00:00

    This one worked great. Thank you!

    Was this answer helpful?

    0 comments No comments
  2. Deleted

    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

  3. Andreas Killer 144.1K Reputation points Volunteer Moderator
    2024-11-25T16:12:32+00:00

    =IF(A4="CAPITAL CALL", A4, "CASH " & A4)

    Was this answer helpful?

    0 comments No comments