Sometimes I meet demonstrative tasks where the great number of data makes impossible to show it in even a full monitor/paper sized chart.
A few days ago, there was such a task, where I needed to illustrate the harness of hundreds of birds. Those being less adaptable and/or not being a Excel expert, might consider this impossible.
I’ve got a trick to solve it: I don’t use a chart.
Conditional formatting is a perfect tool to do this. Using it, colored cells will compose the diagram. It is possible to create multiple-monitor charts with it. Of course this technique has its own limits too: for an example the number of disposable columns, and the fact, that not all types of diagrams can be created with it. (It can be surely used to create a: bar or a column chart, a scatter plot or a Gantt chart).
This is how a giant chart looks like:

I put some small things on it for better perspicuity and legibility:
What do you think about it?
I would appreciate if you would write it between the comments.
Why shouldn’t I write about it, when it’s close to my topic, and you find it on lots of Hungarian websites?
This might be a long step towards Excel for lots…
This is a namely a blood alcohol level calculating Excel sheet.
It shows us when we are going to sober up.
Use it at your own risk!
I don’t know who is the author of it, because each version has another name (plagiarist seem to have written their own name in it), but the original file is creditable.
The idea is a strike of a genius, and the applied techniques show some possibilities of Excel.

The World's most useful excel worksheet
Besides the fact that it’s fun, I uploaded this file because of its use of form elements.
I altered it in a way that the slider, the radio button and the checkbox can be tried out in it.
The file is downloadable from here: http://www.access-excel-vba.com/mostuseful.xls
It’s not containing a macro, so it doesn’t need programming abilities, the form elements can be used without this, and although it’s spectacular, you can create it in an easy way.
Use it!
Cheerio!
I’ve already mentioned this on Twitter:
# The secret of my giant excel array formula is soon to be revealed. 928 characters, 78 left braces, 76 function in a cell.
# My Excel monster-formula makes 240 cells needless. Half as many lines are enough
9:13 AM Mar 16th from web
# What do you think, how can such a big formula be maintained? Tomorrow I’ll give you the answer.10:39 AM Mar 17th from web
# Here’s the great day, and the secret of the giant excel array formula.3 minutes ago from web
One of my customers needed an auxiliary line to perform a calculation reoccurring in every line.
This broke the unity of the whole system and made it quite hard to use.
My formula was much simpler at the beginning, but I improved it so many times that it became gigantic.
It is not easy to review a formula of such size, and to maintain it the traditional way is quite impossible.
I turned to VBA for a solution. I pieced the formula together in a macro.
I created variables for the recurring parts of the formula, which could even follow from each other:
strDate = "R" & intDateRow & "C"
strIndex = "IF(RC" & intIndexColumn & "=0, R24C15, RC" & intIndexColumn & ")"
strMonthStartDate = "DATE(YEAR(" & strDate & "),MONTH(" & strDate & ")+1,1)"
strMonthEndDate = "DATE(YEAR(" & strDate & "),MONTH(" & strDate & ")+1,0)"
Than from these variables I aggregated the whole function.
By breaking apart the formula, it remained maintainable, and comprehensible.
This was one of the great secrets, I gathered together in 9 years of Excel programming, but there are a lot more.
With range names you can do big tricks with excel.
I will show you one of these tricks today:
When you define a range name, then excel will propose the absolute cell reference as default.
But you can use a relative or a mixed reference too.
The active cell is the starting point.
You have to create your reference like you would write into that cell.
My trick is:
This range name will refer to the upper cell to the current position.
It can be used like this:
=SUM(B2:Last)
will give you a dynamic range that will grow or shrink when you insert or delete some rows, even if the deleted row is the last row from the range.
This is a perfect solution.
If you insert multiple rows and don’t fill every cell, the normal reference will not upgrade, the relative name will always work.
It can make our work quicker, if we execute most of the tasks from the keyboard, and use the mouse less frequently.
If someone is familiar with a few keyboard shortcuts, he/ she will know the name is not given by chance.
With one of my colleagues we created a reminder note, which contains the Microsoft Excel hotkeys for the moves. You can print it on a normal sheet, and put it next to your monitor, to be in view, so you can learn it easily.
Please click on the link to download it: http://www.access-excel-vba.com/ms_excel_keyboard_shortcuts.pdf
The keystrokes works with OpenOffice Calc too.
Other useful resources:
http://exceltip.com/news/excel-shortcut-heaven.html
http://tricks-4-fun.blogspot.com/2008/09/best-excel-shortcuts.html