Forum Discussion

Salvador_2703's avatar
Salvador_2703
Copper Contributor
Nov 14, 2020
Solved

Lista desplegabe

Hola, quiero agregar una condicional al rango de una lista desplegable que parta de la segunda hoja en A1 y que termine el la celda indicada por =DIRECCION(COINCIDIR("",A:A,0),1) que es el fin de la ...
  • Riny_van_Eekelen's avatar
    Nov 14, 2020

    Salvador_2703 To create the dynamic range in the traditional way, please follow the instructions in the link below:

    https://docs.microsoft.com/en-us/office/troubleshoot/excel/create-dynamic-defined-range 

     

    But if you insist on using the ADDRESS function, you would have to select a character for the last entry in your list (can not be a blank). Say, that character is a hyphen "-", then enter this formula as the source for the Data Validation list.

    =INDIRECT("$A$1:"&ADDRESS(MATCH(1,FIND("-",A:A,1),0),1))

     There are many other ways to achieve similar results.