السلام عليكم
سيصبح الكود هكذا
Private Sub CommandButton1_Click()
' Changes the Chart's XValue and Value ranges to display the selected data
If TypeName(Selection) = "Range" Then
If Selection.Columns.Count = 1 Then
If Selection.Column = 2 Then
'If Selection.Areas.Count = 1 Then
tt = Selection.Address
For k = 1 To Len(tt)
If Mid(tt, k, 1) = "B" Then
If n = 1 Then
Rng = Rng & "D"
n = 0
Else
Rng = Rng & "a"
n = n + 1
End If
Else
Rng = Rng & Mid(tt, k, 1)
End If
Next
t = Range("A1:D1," & Rng).Address
ActiveSheet.ChartObjects("Chart 1").Activate
ActiveChart.SetSourceData Source:=Range(t)
'Else
' MsgBox "Select a contiguous range of cells in column B.", vbInformation
' End If
End If
End If
End If
End Sub
تم تعديل هذا السطر من الكود
Rng = Rng & "D"
وهذا
t = Range("A1:D1," & Rng).Address