Macro - text box - conditions

  • Thread starter Thread starter ekonomija
  • Start date Start date
E

ekonomija

Dear,

I have the following issue, so please if someone could help in this one:

Workbook contains differenet dialog boxes with different grades, like
questionaire:

Cell A1: 5
Cell B1: 4
Cell C1: 3
Cell D1: 2
Cell E1: 1

Cells A2:E7 have different check boxes with different text values

How to create a macro:

1. That contains condition: that if check box is filled in the cell
A1, that can't be checked in the other cells in the row, but it is ok for the
other in column.
2. To calculate avarage in the cell E8 of those check boxes: ie. If
from A1:A7 all boxes checked, then avarage is 5,00

p.s. – is it possible to change font type in check boxes? And how?


Thank you very much!

Kindly,
ekonomija
 
Thanks a lot!

But, this solved only part of my problem.

How to calculate those things, like I mentioned in my first post?

Thank you very much for help!
 
You can use a linked cell and optionbuttons from the Forms toolbar.

If you're doing a survey, take a look at Debra Dalgleish's site.
http://contextures.com/xlForm01.html

Even if you're not building a survey, you can save the sample workbook and see
how you could average the linked cells (in column C):

=average(C:C)
or
=average(C2:c11)
 
Back
Top