Question : Rogue disc drive in server 2008 cluster

I have a disc drive in a cluster group that has been presented via NetApp. This disc was unpresented in NetApp but still appears in the cluster as offline (see image). Obviously, the cluster still regards the disc as valid and offline. The disc does not appear in windows storage or snap manager. Any ideas, short of rebuilding the cluster?
 
This shows a disc that does not exist in san storage or on the server
329774
 

Answer : Rogue disc drive in server 2008 cluster

Since a combobox returns a string, it's not surprising that the linked cell is getting messed up. I suggest not linking the combobox to a cell, but instead using VBA code to update the value.

The snippet below shows both a KeyUp and LostFocus sub so the date cell (A1 in the code) is updated when you are done typing in the combobox.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
Private Sub ComboBox1_KeyUp(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
Dim v As Variant
If KeyCode <> 13 Then Exit Sub
On Error Resume Next
v = CDate(ComboBox1.Value)
If Not IsError(v) Then Range("A1").Value = v
On Error GoTo 0
Range("A1").Select
End Sub

Private Sub ComboBox1_LostFocus()
Dim v As Variant
On Error Resume Next
v = CDate(ComboBox1.Value)
If Not IsError(v) Then Range("A1").Value = v
On Error GoTo 0
End Sub
Random Solutions  
 
programming4us programming4us