pjb said:
How can I create a link from one worksheet
to another worksheet where I have
created check boxes to define the condition,
being "good" "fair" "poor" or "bad"
I think I need to use an "IF" statement.
Yes, think you're on track with the IF statement <g>
Perhaps a simple tinker to grasp how it could be set-up ?
Assume in Sheet1,
we've drawn a forms checkbox 1 for say, "good"
Right click on checkbox > Format Control
In the Control tab, put for Cell link: Sheet2!$I$1 (say)
Click OK
Then in Sheet2,
we could put in say, B1: =IF(I1,"good","")
The above will return "good" in Sheet2's B1
if the checkbox 1 in Sheet1 is checked
(The cell link in Sheet2's I1 will show: TRUE)
And if it's unchecked, then Sheet2's B1 will return blank: ""
(The cell link in Sheet2's I1 will show: FALSE)
(Col I could be hidden away for neatness)
We could do likewise for the other checkboxes, viz.:
cell links in Sheet2's I2, I3, I4 ..,
and IF formulas in B2, B3, B4
reading the corresponding cell links