Form Controls
What Are Form Controls?
Form Controls are objects which you can place onto an Excel Worksheet which give you the functionality to interact with your models data.
You can use these controls on worksheets to help select data. For example, drop-down boxes, list boxes, spinners, and scroll bars are useful for selecting items from a list. Option Buttons and Check Boxes allow selection of various options. Buttons allow execution of VBA code.
By adding a control to a worksheet and linking it to a cell, you can return a numeric value for the current position of the control. You can use that numeric value in conjunction with the Offset, Index or other worksheet functions to return values from lists.
Use below links to quickly learn about Form Controls:
- What are form controls & introduction
- Button Control
- Label Control
- Check box Control
- Option Button Control
- List box Control
- Combo box Control
- Spin Button Control
- Scroll bar Control
- Group box Controlg
- Using Form Controls – techniques & examples
- Other Controls in Excel
Where Are Form Controls?
Form Controls are located on the Developer Tab under Insert Form Control.
PS: If you do not have developer tab, learn how to enable it.
You will notice 2 types of Form Controls, being Form Controls and Active X controls.
This post will only be dealing with Form Controls. The Active X controls, similarities and differences will be discussed towards the end of the post.
How Do I Insert a Form Control
To Insert a Form Control goto the Form Control Menu and click on the Form Control you want to insert.
Now click on the worksheet in the location you want your form control.
Don’t worry about the location or size you can change those later.
What Are The Different Form Controls?
There are several types of Form Controls offering a range of interactivity from a simple display through to interactive controls which allow multiple selection or interactive selection of values.
Control Name | Description | Function |
Button | Push Button | Executes a macro |
Check Box | Allow selection of non-exclusive options | Multiple On/Off options |
Combo Box | Drop Down selection Box | Select items from a Drop down list |
Group Box | Layout element which groups common elements | Nil |
Label | A Text label | Can be static or linked to a cell |
List Box | Fixed selection box | Select items from a list |
Option Button | Allow selection of exclusive options | Exclusive Single On/Off option |
Scroll bar | Allow Horizontal or Vertical scrolling | Increases or decreases a cells value by a fixed amount |
Spin Button | Increment/decrement a value by a fixed amount | Increases or decreases a cells in steps by a fixed amount |
These are discussed individually below
Form Control Types
Button (Form Control)
The Button Form Control is as its name suggests simply a Button.
Pressing the Button allows execution of a macro.
The Button has no other controls.
Button Text
You can right click on the button and change the buttons Text (Edit Text) and enter the text you want displayed on the button.
The Button’s text can be linked to a cell, select the Button, In the formula Bar enter a link to a cell. eg: =$C$3 and accept. The Button’s text will now change as the contents of the cell C3 change.
You can change the Text Style including Font, Color and Text Direction using the Format Control (Ctrl 1) option.
Assign Macro
Right click on the Button and select Assign Macro
The Assign Macro dialog will pop up.
Select the macro you want to assign to the button.
Label (Form Control)
The Label Form Control is also as its name suggests simply a Label.
The Label will display text either fixed or from a linked cell
You can right click on the button and change the buttons text (Edit Text).
The Button’s text can be linked to a cell, select the Button, In the formula Bar enter a link to a cell
eg: =$C$3 and accept. The Button’s text will now change as the contents of the cell C3 change.
Unlike the Button you cannot change the Text Style, Font, Color or Text Direction.
Typically a label is put in front of another Control to explain or add a title to the control.
Labels would rarely be used on a Worksheet as a label as they have limited text format properties.
Users would be better served using either cell text or a Text Box where full text formatting is allowed.
Labels come into use when setting up custom Dialog Forms which are used by VBA applications for custom data entry or other uses.
Check Box (Form Control)
The Check Box form Control allows selection of a number of non-exclusive options.
That is any number of Check Box controls may be implemented and they independently be on or off and have no relationship to each other.
The Check Box Form Control returns the value indicating its status, either True (selected) or False (not selected), to a linked cell.
To link a Format Control to a cell, Right Click the Format Control and select Format Control…
Option Button (Form Control)
The Option Button form Control allows the selection of an exclusive option from a number of alternatives.
That is only one Option Button Form Control may be selected at a time, the remainder are automatically turned off.
The Option Button Form Control returns the value of the Option Button indicating its status to a linked cell.
In the Example above the Option Buttons are linked to cell E2.
You only need link one Option Button to cell E2, Excel automatically links the remaining option buttons to teh same cell.
Selecting a Different Option Button automatically deselelects the other Option Buttons and changes the linked cells value
List Box (Form Control)
The List box allows the selection of one or more items from a list.
The list is sourced from a Range of cells in the above case it was F2:F17.
The List Form Control returns an Index Number or position of the selected item to the Cell Link, 5 in the example above.
The Input Range and Cell Link are setup by Right Clicking the control and select Format Control…
The Number of items visible in the list box is determined by the size of the list box
If there are more items than will fit in the list box then a scroll bar is automatically added to the list box to enable there selection.
Combo Box (Form Control)
The Combo Box allows the selection of one or more items from a drop down list.
The Combo Box use is similar to the list box except that it has a drop down selection list instead of a fixed length selection list.
The list is sourced from a Range of cells in the example below it was F2:F17.
The List Form Control returns an Index Number or position of the selected item to the Cell Link B10, 9 in the example below.
The Input Range, Cell Link and size of the Drtop Down Box are setup by Right Clicking the control and select Format Control…
Spin Button (Form Control)
The Spin Button is a simple toggle button that allows the increase or decrease of a linked cells value by a certain pre-defined amount.
The Cell Link and Lower, Upper Limits and Step Size parameters are setup by Right Clicking the control and select Format Control…
The Lower, Upper Limits and Step Size must be Integers. If you want to increase a cell by fractional amounts you will need to for example set the range from 0 to 1000 in steps of 1 and then devide the linked cell by 10 which will give a Range of 0 to 100 in steps of 0.1
Scroll Bar (Form Control)
The Scroll Bar Form Control often referred to as a Slider is a simple linear slider that allows the increase or decrease of a linked cells value by sliding a bar either left/right or up/down.
Scroll Bars can be placed either Horizontally or Vertically by dragging the corner.
Scroll bars are incremented by the Step Size by clicking the ends of the bars or dragging the slider or by a Page Jump Size by using Page up[/down or clicking either side of the slider bar.
The Cell Link, Lower, Upper Limits, Incremental Change and Page Change parameters are setup by Right Clicking the control and select Format Control…
The Lower, Upper Limits, Incremental Change and Page Change must be Integers. If you want to increase a cell by fractional amounts you will need to for example set the range from 0 to 1000 in steps of 1 and then devide the linked cell by 10 which will give a Range of 0 to 100 in steps of 0.1
Group Box (Form Control)
The Group Box Form Control isn’t really a Form Control at all, as it allows no interactivity.
What it is used for is grouping similar controls so that functional groups of controls can be maintained and the users flow is directed around a form.
Using the Form Controls
General Use
The use of the information from a form control is limited by your imagination.
Typical uses are
- Selecting items for a chart
- Selecting data sets
- Moving data sets
- Adjusting values in a model
As described in each of the above Form Controls is that the Form Controls do not return a value directly from a list, they all return either a number or an index number relative to the position of the item in a list.
Examples of all the Form Controls and examples of their use can be found in the attached file:
Excel 2003 Examples or Excel 2007+ Examples
or
Have a browse through the dashboards presented during Dashboard Week
or
For some Extreme Examples of Spreadsheet Interactivity using Form Controls and a little bit of VBA code:
Running Macros
Apart from the Button Form Control whose only purpose is to Run Macro’s, all Form Controls can be linked to a Macro.
This is done by Right Clicking on the Form Control and selecting Assign Macro.
It is worth noting that the macro is only executed after the control is released.
EG: If you have a macro linked to a Spin Button, If the Spin Button is held down and hence repeatedly increments its value, the macro will only be executed after the control is released.
Moving and Resizing Form Controls
You can move and resize form controls as with all other worksheet Objects.
Select the form control by right clicking on it
Use the handles to resize or drag the edges to move the controls
Hint: You can use Alt while dragging or resizing to snap the control to cell boundaries.
3D, Printing & Locking Form Controls
You can lock Form Controls as well as enable them to be printed or not
Right Clicking the control and select Format Control…
Use the Size, Protection and Properties Tabs as required.
The 3D option enables a 3D version of the Control instead of a flat control, which can add a bit of sparkle in some instances.
Limitations of Form Controls
Form controls offer a limited set of functions but do those functions very well.
Limitations are Form Controls:
- Form Controls can only increase or decrease by integer numbers
- Form Controls only return the index of an item in a list
- Form Controls have limited format properties (Font, Color etc)
What are the Active X Controls
Active X controls are like Form Controls on Steroids in that they have a much wider range of properties than Form Controls.
They also have much better ties to VBA in terms of programmability and have a number of events that can be accessed programmatically.
The main limitation of Active X controls are that they use a Microsft Active X component. This means that if you are sharing your workbook with an Apple Mac user using Excel for Mac these functions wont be available as Active X isn’t avilable on that Platform.
Workbooks with Form Controls will happily work on a an Apple Mac.
Other Controls Available in Excel
A number of other Excel objects can be used to add interactivity to your worksheets.
Shapes
These include:
- Shapes
- Charts
- Text Boxes
- Word Art
All these can have macro’s linked to them which effectively act the same as a Button Form Control without the moving button effect.
A stunning example of using Text Boxes was recently posted at: The Grammy Bump Chart
Where the Artists Stats Box (Top Left of Chart) is using several Text Boxes linked to cells to show the Selected Artsists Statistics.
HyperLinks
Inserting Hyperlinks at stratgic locations throughout worksheets provides a great way to simplify navigation around pages and between pages
Other Links
Where have you used Form Controls ?
Where have you used Form Controls?
Let us know in the comments below:
28 Responses to “2010 Calendar – Excel Template [Downloads]”
[...] Download and print the calendars today. You can add notes to individual dates or complete … [...] Uni Ego / Free 2010 Calendar – Download and Print Year 2010 Calendar today [...]
Any chance on a 2016 calendar?
Afternoon,
I have one similar calander that I added conditional formatting to so that I could highlight any planned factory holidays. I think i "borrowed" the formula from another calander so I won't post it here.
I also added week numbers to it using the formula =WEEKNUM(MAX(C6:I6)) Where C6:I6 is the range of dates in that give week. It works fine on most of the months but return strange values on other months (Week 6 in October?) I can't see any logic behind why it does this.
Any suggestions for an alternative formula to give the week numbers?
Regards,
William
Hi Chandoo,
I've added a new feature on your spreadsheet.
This control can be useful for all the sheets where you need to check dates.
Cheers
http://cid-69a78592a23a8438.skydrive.live.com/self.aspx/.Public/2010-calendar%5E_Miguel.xls
Hi Chandoo,
Nice calendar.
Till now whichever calendar I saw in Excel, it contained only the outline sheet.
Good to see monthly views and the mini view too.
Liked the mini view much. 🙂
-Nimesh
@William: This weeknum may be because the input dates to max are not properly formatting as excel dates.
Good tip on the conditional formatting and holidays btw...
@Migueal: Now that is super awesome. This is the reason why I love to blog. Readers will always one up me with such cool alternatives. Thank you for sharing this with us.
@Nimesh: You are welcome 🙂
is it possible to get the Notes section on the outline page to display the notes added to the month page for a specific date?
So if you add thing for January 2nd, and then select January 2nd those notes appear on the outline page
@Shish... You can do that using some formula magic. I would not recommend pushing excel to that as outlook / google calendar / icalc etc. do exactly that much more elegantly.
[...] Perpetual Excel Calendar – Free Downloadable Template [...]
Happy christmas to all of you!
This is really awesome. The nicest calender I've seen for Excel. I also like Miguels version of the sheet.
Just one "feature" is missing to me. As I live in Germany - where weeks start on Monday - I'd like to change this. Could someone please give me a hint how to do this?
Thanks in advance
Jörg
Hi Chandoo, I’ve added some new features on your spreadsheet with your permission.
Check it here:
http://cid-6b219f16da7128e3.skydrive.live.com/self.aspx/.Public/Calendar%5E_Pedro.xlsm
Miguel, this calendar is translated to Spanish language.
Jörg, this new approach allows us to start weeks on Monday.
Also it's possible to start weeks on Sunday if you enable Excel macros and push the arrows.
Best Regards,
Pedro.
@Pedro.. superb stuff.. thanks for sharing the file with all of us.
Hi Chandoo, for dates before March 1, 1900 our calendars are wrong.
In Microsoft Excel, DATE, EOMONTH, WEEKDAY functions return an incorrect result between Monday, January 1, 1900 and Wednesday, February 28, 1900.
See this page: http://support.microsoft.com/kb/214326/en-us/
Microsoft Excel incorrectly assumes that the year 1900 is a leap year in all Excel versions.
That's the reason why our calendar versions only work from March, 1, 1900 until December, 31, 9999.
Your comments are welcome.
Pedro.
@Pedro.. Thanks for pointing that out. wow... This reminds me of the Joel Spolsky's first BillG review - http://www.joelonsoftware.com/items/2006/06/16.html (read it, I am sure you would love it.) when Bill out of blue asks about date time implementations for VBA (which Joel is the program manager for...)
Thanks for sharing the URL too... Here is a specially made, chocolate sprinkled, extra fluffy donut for you 🙂
Hi Chandoo, thanks a lot for the donut but I prefer it without chocolate!
Always it's good to know a little history of Excel.
The Joel Spolsky’s last BillG Excel review was about the "Hall of Tortured Souls"
(See this Excel 95 Easter Egg here: http://www.eeggs.com/items/719.html)
Do not miss the humor!
@Chandoo.. I just return with a new calendar version.
http://cid-6b219f16da7128e3.skydrive.live.com/self.aspx/.Public/calendar-pedrowave.xltx
It helped me to practice conditional formatting, formulas to show check boxes, data validation drop down list, find out Thanksgiving Day's date for any year, how to find dates of public holidays using Excel, all reading your wonderful posts!
Perpetual Calendar Spanish version starting weeks on Monday:
http://cid-6b219f16da7128e3.skydrive.live.com/self.aspx/.Public/calendario-pedrowave.xltx
Main characteristics:
- Not macros.
- Select a year from 1900 to 9999 with a dropdown listbox.
- All date fields with the real date format.
- Easy language change of day of the week and month names because are also dates.
- Hide Saturdays and/or Sundays.
- Week starting on Sunday or Monday.
- Week and month numbers.
- Hyperlink between sheets.
- Consistent colors to Holidays, Diary and Events dates.
- Easy change of Holidays by country.
- Include 80 World Days and you can add more.
- A diary with my birthday and 50 more programable appointments.
- Check box to hide individual dates or all.
- Holidays, diary and events text are showed on each month's sheet.
- Ranges defined with Name Manager variables.
I'll appreciate if you make me some suggestions to improve this calendar.
Pedro.
Please, I need help!
I like all calendar from Pedro, thank you for them. Let me show my problem:
I have 2 excel cells (for example AE12 and AE13) which mean the starting and the ending date of my duty. I need a macro to insert sheets with label YEAR. MONTH (for example 2010. August or similar) with the proper datas between the two dates. Is it possible?
Thank you for reading me and sorry about my terribel english! 🙂
Hello Pedro,
Thanks so much for the modified calendar template. I love the extra functionality you added. Is there any way you could upload an unlocked version? I wanted to change some of the comments and data validation so I could use it for one of my applications.
As for feedback on potential improvements, with all the additions you made the file runs pretty slow. I'm sure this has to do with all the interconnectivity between the various tabs, but if there is a way to use less memory via more efficient formulas or something else I think this would make it easier to use. I have a brand new computer and with it running alone the response was pretty slow. One of the changes I'm making is changing the order of the months to match my company's fiscal year, so maybe something to automate a change like that could be useful.
Cheers,
Peter
Peter, my calendars are unlocked but you need Excel 2007 and 2010 versions to open them.
Now I return with a new Programmable Task Calendar:
http://cid-6b219f16da7128e3.office.live.com/view.aspx/.Public/Calendario%20de%20Tareas.xlsx
Wath an introductory video here:
http://pedrowave.blogspot.com/2010/10/programmable-task-calendar.html
This new calendar allows to select the start month to match the school and fiscal year.
This is great stuff Chandoo and company
Wanted to know if someone had built something similar
I need to store one Excel Sheet on this calendar that has all the holidays
US Holidays appear in RED
UK Holidays appear in Blue
Meetings appear in Green
Submissions appear in Orange
Is there a way I can store the list in a separate worksheet and all the calendars get updated with this?
Thanks
[...] Calendars: Year 2010 Excel Calendar | Year 2009 Excel [...]
please tell me "how to convert Rs.10000/- in to words through excel formula
[...] is all! http://chandoo.org/wp/2009/12/11/2010-calendar-excel-template-downloads/ See more Templates at http://www.vertex42.com/ Share this:Like this:LikeBe the first to like this [...]
Greetings,
Thanks for this wonderful excel vacation tracker. I notice that the tracker only has three months November, December and January 2015, however, I would like to add the other ten months for 2014. Can you please instruct me on how I can add the other months?
Thanking you in advance.
Hi Chandoo,
Calendar: can this be printed as single sheet 8.5x11 inch per month
kanu
@Kanu
Yes,
You can resize it to fit
WOW! I just searching some of like this, that help me.
Thank you for sharing.