Doorgaan naar hoofdcontent

Posts

Er worden posts getoond met het label Namen

Excel: performance of hoe optimaliseer ik grote spreadsheets I

Bij Excel kan bij grote bestanden de snelheid een probleem worden. Het is vaak lastig vast te stellen waar het precies aan ligt. In bijgaand bestand heb ik een aantal voorbeelden vergeleken. Kunnen we nu beter namen gebruiken of juist niet? Is de functie INDEX sneller of langzamer dan VERT.ZOEKEN ? En zo nog wat voorbeelden. Kunnen we het een en ander testen? Jawel! De voorbeelden zijn op snelheid van uitvoering te vergelijken met behulp van VBA routines die aan te roepen zijn met knoppen. Bijbehorende bestand  ExcelBerekening.xlsm  is te downloaden via: https://drive.google.com/folderview?id=0B7HgkOwFZtdZVmhRQUZFM28yc1U&usp=sharing Voor verder  Excel  tips klik  hier .

Excel: Data Validation And Stepped Choices With Names And VBA

In Excel you can validate a cell through Data  =>  Data Validation . We then will get this window: At  Allow  we then can choose List and then at  Source  we pick the range where the data are . Want we want to do here is select a continent first and then automatically restrict the choice in the next cel to countries from the specific continent. In the example we see the data (in Dutch) which we are going to use in our example, A1:E6 : afrika amerika australië azië europa nigeria brazilië nieuw zeeland china nederland boeroendi argentinië australië japan belgië liberia equador nieuw guinea thailand polen sierra leone peru pakistan duitsland mauretanië bolivia india engeland We will use names here to make the stepped choices work. We select  A1:E6 . We then choose the tab  Formulas  and  then Create From Selection . We'll get: Here we check the upper box only. Then we click OK . We now created five name...

Excel: datavalidatie en getrapte keuze

In Excel kun je een cel valideren via de tab Gegevens => gegevensvalidatie . We krijgen dan dit dialoogvenster: Bij Toestaan kunnen we dan kiezen voor Lijst en vervolgens bij Bron voor het bereik waarin de data staan. Bij een getrapte keuze kiezen we bijvoorbeeld in een eerste cel het werelddeel en in de cel ernaast willen we dan alleen landen zien die bij het betreffende werelddeel horen. In het onderstaande voorbeeld geven we de data die we in ons voorbeeld gaan gebruiken, van A1:E6 : afrika amerika australië azië europa nigeria brazilië nieuw zeeland china nederland boeroendi argentinië australië japan belgië liberia equador nieuw guinea thailand polen sierra leone peru pakistan duitsland mauretanië bolivia india engeland We gaan hier namen gebruiken om de getrapte keuze te laten werken. We selecteren A1:E6 . We kiezen dan de tab Formules en ve...

Excel: Some Reflections on Matrices in Names based on Text, Used in Graphs

Data: A1:D12 filled with jan-dec: jan jan jan jan feb feb feb feb mar mar mar mar apr apr apr apr may may may may jun jun jun jun jul jul jul jul aug aug aug aug sep sep sep sep oct oct oct oct nov nov nov nov dec dec dec dec Example A AllText =A1:D12 &"" Adding &"" changes the whole name into one continuous array, reading from left to right and from top to bottom. We can use this in a graph (see Example A). We can not read the elements using the INDEX function like this: =INDEX(AllText;13) The INDEX does not see this as a continuous array. We still could use: =INDEX( AllText ;4;3) But there is nothing special about that. Example B ColumnText1 =...