Autopopulate text based on drop down option
Hello!
I'm trying to figure out a formula to autopopulate text in a cell based on a drop down option in a previous cell. Basically one column would contain the drop down (Campus) and based on which campus is selected, a different cell (account) would autopopulate.
Ideally it would look like this:
Campus (drop down) Account (auto pop)
Blue 1234
Red 4568
Blue 1234
In looking through the forum, I saw this formula but would need to tweak it a bit in order for it to "hopefully" work: =IF(AND([Cancellation Effective]@row <> "", [Cancellation Effective]@row <= TODAY()), "Inactive", IF([Start Date for Phase 1]@row <= TODAY(), "Active", IF([Start Date for Phase 1]@row >= TODAY(), "Onboarding")))
Any insights would be super helpful!
Best Answer
-
That was my fault. I missed a quotation mark. Try this...
=IF(Campus@row = "Blue", "1234-12", IF(Campus@row = "Red", "4568-12", IF(Campus@row = "Green", "7456-12")))
Answers
-
As and update I've tried to play around with the formula and use the IF(AND), but am still getting nowwhere...
=IF(AND([Campus Name]2 = "Blue", "1234-12", IF(AND([Campus Name]2 = "Red", "4568-12", IF(AND([Campus Name]2 = "Green", "7456-12"))))))
I got it to work with just one IF condition, but can't seem to move forward with multiple nested rules.
I'm getting the message "INCORRECT ARGUMENT SET" :(
-
Try something like this...
=IF(Campus@row = "Blue", "1234-12", IF(Campus@row = "Red", 4568-12", IF(Campus@row = "Green", "7456-12")))
-
Hi Paul,
Unfortunately with that formula I get "UNPARSEABLE"
Any other thoughts?
I did get this one to work:
=IF(AND([Campus Name]2 = "Blue", "1234-12", IF(AND([Campus Name]2 = "Red", "4568-12", IF(AND([Campus Name]2 = "Green", "7456-12"))))))
but only on "Blue"...for the columns with "Red" or "Green" it came up as #INCORRECT ARGUMENT SET
-
That was my fault. I missed a quotation mark. Try this...
=IF(Campus@row = "Blue", "1234-12", IF(Campus@row = "Red", "4568-12", IF(Campus@row = "Green", "7456-12")))
-
Paul, you're a frickin genius!!!
Thank you sooooo much. This is amazing. You are amazing.
-
Happy to help. 👍️
Sorry about the initial quotation mark issue.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!