- Katılım
- 15 Mart 2005
- Mesajlar
- 42,986
- Excel Vers. ve Dili
- Microsoft 365 Tr-En 64 Bit
Deneyiniz.
Kod:
Sub Sütun_Harfi_Bul()
No = Application.InputBox("Lütfen sütun numarasını giriniz!", "Sütun Numarası")
If No = False Or No = Empty Then Exit Sub
Sutun = Split(Columns(Val(No)).Address, ":$")(1)
Sutun = Sutun & ":" & Sutun
With Columns(Sutun)
.Copy
.PasteSpecial xlValues
Application.CutCopyMode = False
End With
End Sub