Dropdown spilt
could you help me to split dropdown to 1or 2 or 3 or 4 collum with fumular?
Best Answer
-
You would use something along the lines of
=IFERROR(MID("!" + [Work Type]@row + "!", FIND("~", SUBSTITUTE("!" + [Work Type]@row + "!", "!", "~", 1)) + 1, FIND("~", SUBSTITUTE("!" + [Work Type]@row + "!", "!", "~", 2)) - (FIND("~", SUBSTITUTE("!" + [Work Type]@row + "!", "!", "~", 1)) + 1)), "")
The above example will pull the first selection.
You will also see three bold numbers in the example above that go 1 2 1. To pull the second entry, you would update these to be 2 3 2, the third entry would be 3 4 3, and the fourth entry would be 4 5 4.
Answers
-
You would use something along the lines of
=IFERROR(MID("!" + [Work Type]@row + "!", FIND("~", SUBSTITUTE("!" + [Work Type]@row + "!", "!", "~", 1)) + 1, FIND("~", SUBSTITUTE("!" + [Work Type]@row + "!", "!", "~", 2)) - (FIND("~", SUBSTITUTE("!" + [Work Type]@row + "!", "!", "~", 1)) + 1)), "")
The above example will pull the first selection.
You will also see three bold numbers in the example above that go 1 2 1. To pull the second entry, you would update these to be 2 3 2, the third entry would be 3 4 3, and the fourth entry would be 4 5 4.
-
Thank you very much
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.6K Get Help
- 472 Global Discussions
- 200 Use Cases
- 513 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 81 Community Job Board
- 520 Show & Tell
- 35 Member Spotlight
- 3 SmartStories
- 307 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!