Posso concatenar 2 valores e colocá-los em um menu suspenso

0

Então eu estou fazendo esta folha de excel e eu quero mantê-la o mais simples possível e não usar o VB. Então eu nem sei ou penso se é possível. Eu sei como usar a função de concatenação, mas posso concatenar 2 menus suspensos para criar um terceiro?

ex

Dropdown box A : Blue ,Yellow, Green   Dropdown box B : Violin, Guitar, Piano
Dropdown box C : Blue ,Yellow, Green   Dropdown box D : Violin, Guitar, Piano


                         Dropdown E: Blue Violin
                                     Green Guitar
So the options from Dropdown menu E depends on the previous boxes.
    
por user1399713 14.06.2013 / 03:57

1 resposta

0

Uma maneira simples de fazer isso (embora provavelmente não seja a maneira mais elegante) seria algo assim:

1.  Create the color list
    a.  Enter the values for the color list in an area in your spreadsheet, one value per cell.  For purposes of this example, let's use A8:A10 (Blue, Yellow and Green).
2.  Create the instrument list
    b.  Like step 1A above - for this example, let's use A12:A14 (Violin, Guitar, Piano).
3.  Create four dropdowns that use the two lists created:
    a.  For purposes of this example, Drop Down A and C are in A3 and A5.  Data Validation is set to List, with the source being A8:A10.
    b.  For the instruments, Drop Down B and D are in C3 and C5, with their source being A12:A14.
4.  Create a third list that will concatenate the two values for each group:
    a.  A and B:  =Concatenate(A3, " ", A5)
    b.  C and D:  =Concatenate(C3, " ", C5)
    c.  Again for this example let's put these in A17:A18.
5.  Create the fifth dropdown (E) and set it's list source to A17:A18.

Aqui está uma captura de tela:

Note que as fórmulas em 4a e 4b vão para as células A17 e A18, respectivamente.

Não tenho dúvidas de que existem soluções mais elegantes por aí, mas essa é uma maneira de fazer isso.

    
por 14.06.2013 / 04:37