Excel – Buscar si una Celda contiene alguno de los elementos de una lista

Si tenemos una celda con varios valores (por ejemplo, separados por 'punto y coma') y queremos saber si alguno de esos valores esta dentro de una lista de elementos, utilizaremos: =SUMPRODUCT(--ISNUMBER(SEARCH(MY_LIST,CELL_TO_CHECK)))>0 Donde MY_LIST es el rango de celdas donde tengamos nuestra lista de elementos y CELL_TO_CHECK es la celda que queremos comprobar (Estos valores tambien …

Sigue leyendo Excel – Buscar si una Celda contiene alguno de los elementos de una lista

Find Public Key Token of my Project in Visual Studio 2012

In order to find the public key token of your project you need to follow this: 1. Open the Developer Command Prompt fot VS2012. 2. Write this command (Use full path of your DLL file): sn -T C:MyDLLdirectoryMyDLLfile.dll 3. Automatically it shows you your token: Microsoft (R) .NET Framework Strong Name Utility Version 4.0.30319.17929 Copyright …

Sigue leyendo Find Public Key Token of my Project in Visual Studio 2012

Hide «div» that contains a specific «div» in one of its children (at any level)

We want to hide "Level1" div that contains inside any "Level3" div in this code: <div class="level1"> Level 1A <div class="level2"> Level 2A <div class="level3"> Level 3A </div> </div> </div> <div class="level1"> Level1B <div class="level2"> Level2B </div> </div> We can do it by JQuery, once the page is loaded, that way: <script type="text/javascript"> $(document).ready(function(){ hideLevelOne(); …

Sigue leyendo Hide «div» that contains a specific «div» in one of its children (at any level)