HELP! Setting CHOOSE [Value] to Cell Content

a_team_murdock

New Member
Joined
Sep 9, 2011
Messages
1
Hi:

I was wondering how you would set the CHOOSE functions' Value to a cell's content?

Example: A1 = 2,3,5,6,7,8

and I want that "2,3,5,6,7,8" to go into CHOOSE(5,A1) to =7 but it won't work... it takes it as text because it is...

In thinking an indirect or something? I know it's simple, but I just can't figure it out!

Any help would be appreciated.


Thank you kindly,



Al
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
For CHOOSE you need an array as second argument
Try this

=CHOOSE(B3,LEFT(A1,1),MID(A1,3,1),MID(A1,5,1),MID(A1,7,1),MID(A1,9,1),MID(A1,11,1),MID(A1,13,1))

where B3 is your number to choose from
 
Upvote 0

Forum statistics

Threads
1,224,541
Messages
6,179,418
Members
452,912
Latest member
alicemil

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