stirlingmw
Board Regular
- Joined
- Feb 18, 2013
- Messages
- 75
I have a Userform which is populated from a worksheet using a Combobox selection, or data is added to the userform and then added to the worksheet. Within the Userform I have a Checkbox that indicates if a certain piece of paperwork is present for that specific Project. If this Checkbox is true then a Label appears formatted as a link to a Sharepoint folder.
If i manually insert the data and check this checkbox, this Label appears, but if the Userform is populated by the Combobox selection, although the checkbox is true, the Label dose not appear. The code I am using is:
Any ideas why?
thanks
Steve
If i manually insert the data and check this checkbox, this Label appears, but if the Userform is populated by the Combobox selection, although the checkbox is true, the Label dose not appear. The code I am using is:
Code:
If Worksheets("Project Master").Cells(i, 58).Value = True Then
Label25.Visible = True
Else
Label25.Visible = False
End If
Any ideas why?
thanks
Steve