CHECK BOX

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

HI All

I have a check box linked to cell I6 when checked it returns TRUE when unchecked it returns FALSE how can i change this to say YES instead of true and NO instead of FALSE
 
Use an IF formula in another cell
to read the cell-link and return the desired outcome.

For example,

Put in J16: =IF(I16=TRUE,"YES","NO")

--
Rgds
Max
xl 97
--
Please respond, in newsgroup
xdemechanik <at>yahoo<dot>com
---
JInx said:
HI All,

I have a check box linked to cell I6 when checked it returns TRUE when
unchecked it returns FALSE how can i change this to say YES instead of true
and NO instead of FALSE
 
Hi
AFAIK you can't change the output of the linked cell (and you alson
can't change this format). But you may try to link a cell with code:
- disbale the liked cell in the properties dialog
- add the following code to your checkbox
Private Sub CheckBox1_Click()
If CheckBox1.Value Then
Range("A1").Value = "Yes"
Else
Range("A1").Value = "No"
End If
End Sub
 
Link to a cell out of sight (IV1 for example) then in I6 use this formula

=IF(IV1,"Yes","No")

the other option would be a macro but that is not necessary IMHO..

--

Regards,

Peo Sjoblom


JInx said:
HI All,

I have a check box linked to cell I6 when checked it returns TRUE when
unchecked it returns FALSE how can i change this to say YES instead of true
and NO instead of FALSE
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Formula Question 3
Stuck on formula 1
Check box not working out for me.. why? 5
Display values other than TRUE and FALSE 6
True or False for a check box 4
VLOOKUP 4
Access 2010 0
Excel How to get output of the formula instead of True or false 1

Back
Top