This code is trying to delete all times from cells so just show`s Date

Eric Penfold

Active Member
Joined
Nov 19, 2021
Messages
424
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
This code say`s runtime error 13??

VBA Code:
Sub FormatCells()

    Dim wb     As Workbook
    Dim ws     As Worksheet
    Dim LRow   As Long
    Dim Rng    As Range
    Dim Cell   As Range
    Dim i      As Long

    Set wb = ActiveWorkbook
    Set ws = wb.Sheets("Sheet")
    LRow = Cells(Rows.Count, 1).End(xlUp).Row
    
    With Application
        .ScreenUpdating = False
        .DisplayAlerts = False
    End With
    
    With ws
        Set Rng = ws.Range("F2:F" & LRow)
    End With
        
        For i = 2 To LRow
            With Range("F" & i)
                .NumberFormat = "dd/mm/yyyy"
                .Value = DateValue(.Value)
            End With
        Next i
        
    With Application
        .ScreenUpdating = True
        .DisplayAlerts = True
    End With
    
End Sub
 
Sorry just realized row 2 was hidden so here are the true results

=LEN(F3)=16 then =CODE(MID(F3,11,1))=48
 
Upvote 0

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
So, if there is nothing in row 2, and your data actually starts on row 3, you need to change this line:
VBA Code:
        For i = 2 To LRow
to this:
VBA Code:
        For i = 3 To LRow
 
Upvote 0
Sorry yes it now says Expected array which i added. And when i run it it deletes the cell values.
 
Upvote 0
Sorry yes it now says Expected array
What does? When you try running the code?
Once again, is there a debug button, and if you hit it, what line of code does it highlight?

I think it would be much more efficient if you could show us exactly what your sheet looks like.
MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.
 
Upvote 0
The cell i am trying to change to just the date. The code clears the value. No line is highlighted as a error.
 
Upvote 0
It sounds like the values in column F may not actually hard-coded in, but may be the results of formulas.
Is that true?
 
Upvote 0
Then I don't understand what you are telling me with that array comment.
I don't know that there is going to be much more I can do for you without having access to the workbook.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top