Fibonacci Clock with Excel – no code

The Fibonacci Clock is getting quite some attention on the web lately. Check it out here and read about how it works.

Short summary: The clock consists of five squares with different magnitudes: 5 – 3 – 2 – 1 and 1 again.

Add up the magnitudes for the red and the blue squares to arrive at the number of hours.

Add up the magnitudes for the green and the blue squares, multiply the result by 5 to arrive at the number of minutes.

Ignore white squares.

Minutes are rounded to the nearest 5. AM and PM don’t exist.

So, the time 9:25 looks like this:

Red and blue squares are magnitudes 5 + 3 + 1 = 9. That’s the hour.

Green and blue squares are magnitudes 3 + 2 = 5. Multiply by 5 = 25. That’s the minute.

Not everybody may be willing to pay for the hardware version of the clock, but even if you will get one, you will need some practice to get comfortable reading what it says. So here is your free Fibonacci Clock created with Microsoft Excel.

This is really great and a major advancement. Instead of just glancing at the clock and knowing instantly what time it is, you now need to spend upwards of 5 seconds, maybe up to minutes, to work out what the time is by adding up colour-coded squares. Yep. It’s for nerds. Geeks welcome.

All you need is a working version of Excel on your device. It will work on Excel for your computer (PC or Mac), Excel for iOS, or Android, and with Excel on-line, because it only uses conditional formatting and a few formulas. There’s no VBA code involved. Here’s a screenshot of the file on my iPhone:

IMG_0487

Many time stamps can be represented with various combinations of the squares. I’ve used formulas and conditional formatting to arrive at a combination that has the correct time and not too many blue squares.

Download the attached file and play with the settings. You can use the system time and edit any cell to refresh the clock, or enter a time manually and practice how to read it.

Download the Fibonacci Excel Clock

11 comments

  1. This is the dumbest clock version I have ever seen. How about random math problems to calculate the time.

    Even the LED BCD clock is easier to read (and it takes a while).
    The Misfit activity tracker decided to use a circle of 12 leds instead of digital readouts and has the much more readable hour = solid on, minutes = flashing.

    Like

  2. Hi Teylyn,

    I love your Fibonacci Excel Clock very much. Howerver, I got some questions as follows, could you please give me more explanations. Thanks.

    1. What’s the purpose for the column “check de – dupe” even though the numbers could be different from those for the “check orig” whenever the minute number is greater than 37.
    2. I changed the formula “SEARCH(“hide”,$Q$6)=1″ to $Q$6 = “TRUE” in correspondence to hide the magnitude number in clock then switched the option button to “FALSE” then the colours changed incorrectly. I could not help write one more formula with no filling colour to fix it. What’s wrong with me?

    Julian Chen

    Like

    • The de-dupe is a simple attempt to get a bit of variation into the clock. Some times can be expressed in a variety of ways. I have not explored all options, and with the de-dupe just attempt to avoid too much blue. Why did you change the formula for the conditional formatting? It checks if Q6 contains the text “hide” as the first word. Q6 contains text, not a boolean. There is no option button. Sorry, I don’t know what you mean. The file works as posted. If you change the fundamentals and it stops working, just undo your changes.

      Like

      • Regarding point 2, I just wanted to practice by myself more than what learned from your blog. For example, I also tried to use formula RANDBETWEEN and a spin button to get the time value in stead of key-in. That’s it. Thanks again for your instructions.

        Like

  3. Is there a way to hide the excel menus and top, bottom, and side bars? This looks great, and would be even nicer to display on a wall mounted monitor without all the excel parts.

    Like

    • Yes, you can use the View ribbon to hide the column headings and the formula bar. In the Advanced options you will find settings to hide the sheet tabs and the scroll bars. Collapse the ribbon. There is a command to toggle full screen view, but it is not on the ribbon, so you may want to add it. If you use that, the sheet shows full screen, only a thin window title at the top is visible. To get out of full screen, hit Escape.

      Like

    • @Tom Winters, In Excel 2007, I use the following code to that job:

      //////////////////

      Private Sub Workbook_Open()
      Application.DisplayFormulaBar = False
      Application.DisplayStatusBar = False
      Application.ExecuteExcel4Macro “SHOW.TOOLBAR(“”Ribbon””, False)”
      End Sub

      //////////////////

      Like

  4. @Tom Winters, That is, after hiding the sheet tabs and the scroll bars in the Advanced Options, and also after un-selecting Headings under the View menu.

    PS: If the above code shows error, you may wish to manually insert the ” Double Quotes ” , since it seems to get formatted incorrectly on this page.

    Like

Leave a comment