I have a table in my worksheet that populates with a spill of the main table if any project in the main table is unfinished. I need to show a textbox if there are no unfinished projects to overlay the area of the spill array and hide it if there is any value in the spill array.
How could this be done? I've tried the following:
but I can't get the textbx_NoOpenProjects to appear/disappear. The spill array is working properly and is based on the main table in another worksheet.
Any help?
How could this be done? I've tried the following:
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Row = 14 And Target.Column = 2 Then ' The spill array's upper left cell is B14
If Target.Value = "" Then
ActiveSheet.Shapes("txtbx_NoOpenProjects").Visible = True
Else
ActiveSheet.Shapes("txtbx_NoOpenProjects").Visible = False
End If
End If
End Sub
but I can't get the textbx_NoOpenProjects to appear/disappear. The spill array is working properly and is based on the main table in another worksheet.
Any help?