arkadaşlar bende şöyle bir makro hazırladım kontrol edersiniz sorusu olan olursa yanıtlarım
For i = 1 To 100
s = Sheets(1).Cells(i, 7).Value
If s = "" Then
i = 1000
Else
For j = 1 To 10000
If Sheets(1).Cells(j, 1).Value < Sheets(1).Cells(j, 2).Value Then
d1 = Sheets(1).Cells(j, 1).Value
d2 = Sheets(1).Cells(j, 2).Value
Else
d2 = Sheets(1).Cells(j, 1).Value
d1 = Sheets(1).Cells(j, 2).Value
End If
d3 = Sheets(1).Cells(j, 3).Value
If d1 <= s And s <= d2 Then
Sheets(1).Cells(i, 8).Formula = d3
j = 10000
Else
End If
Next
End If
Next
For i = 1 To 100
s = Sheets(1).Cells(i, 7).Value
If s = "" Then
i = 1000
Else
For j = 1 To 10000
If Sheets(1).Cells(j, 1).Value < Sheets(1).Cells(j, 2).Value Then
d1 = Sheets(1).Cells(j, 1).Value
d2 = Sheets(1).Cells(j, 2).Value
Else
d2 = Sheets(1).Cells(j, 1).Value
d1 = Sheets(1).Cells(j, 2).Value
End If
d3 = Sheets(1).Cells(j, 3).Value
If d1 <= s And s <= d2 Then
Sheets(1).Cells(i, 8).Formula = d3
j = 10000
Else
End If
Next
End If
Next