VBABEGINER
Well-known Member
- Joined
- Jun 15, 2011
- Messages
- 1,284
- Office Version
- 365
- Platform
- Windows
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Call ColBT
End Sub
Public Function ColBT() '(rng As Range) As Double
Dim i
For i = 13 To Range("BT13").End(xlDown).Row
Cells(i, "F") = Left(Cells, Len(Cells) - 3) & Cells(i, "BT")
Next
End Function
I want to use Left function On Col BT and then i copy this value to COl F.
Problem is unble to use Left function.
Any one correct my code, pls tell me what i did mistke?