macro only working on sheet2 in the same workbook

excel_lelkes

New Member
Joined
May 16, 2017
Messages
30
Dear Forum, please help me with the following problem:


I´ve a workbook with two sheets.
I wrote two macros for Sheet2
Both works perfect
my problem is that I can't get them working on Sheet 1
the NOT-working code:
Sub formateraDat()
Dim ws1 As Worksheet, lr As Long, i As Integer
Set ws1 = Sheet1
lr = ws1.Cells(Rows.Count, 1).End(xlUp).Row
MsgBox "lastrow" & " " & lr
For i = 2 To lr
ws1.Cells(i, 1).NumberFormat = ("yy-mm-dd")
Next i
End Sub

the working code:
Sub formateraDatum()
Dim ws2 As Worksheet, lr As Long, i As Integer

Set ws2 = Sheet2
lr = ws2.Cells(Rows.Count, 1).End(xlUp).Row

For i = 2 To lr
ws2.Cells(i, 1).NumberFormat = ("yyyy-mm-dd")

Next i
End Sub

I've tried for hours without success
Please help!


Thank in advance
Regards
Peter
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
If you put the formula
=ISNUMBER(A3)
in an empty cell on Sheet1 does it return TRUE or FALSE?

Btw, you don't need to loop through the cells, you can apply the numberformat to the range in one go.

Code:
Sub formateraDatum()
    Dim ws2 As Worksheet, lr As Long

    Set ws2 = Sheet2
    lr = ws2.Cells(Rows.Count, 1).End(xlUp).Row

    ws2.Range(ws2.Cells(2, 1), ws2.Cells(lr, 1)).NumberFormat = ("yyyy-mm-dd")

End Sub
 
Upvote 0
Looping when interacting with the sheet slows the code down and takes more processing.

Because the formula is showing FALSE it means your dates aren't real dates but text.
Assuming that they are showing in your computers date format try selecting the column, clicking the Data Tab, click Text to Columns, click Next twice and then click Finish and see if the formula changes to TRUE.
 
Upvote 0
Just a very basic demo of the difference using loops try running the codes below.....

Code:
Sub xxxx()
    Dim t As Double, i As Long
    t = Timer
    For i = 1 To 10000
        Cells(i, 1).Value = 1
    Next
    MsgBox "Code took " & Format(Timer - t, "0.00 secs")
End Sub
Code:
Sub yyyy()
    Dim t As Double
    t = Timer
    Range("B1:B10000").Value = 1
    MsgBox "Code took " & Format(Timer - t, "0.00 secs")
End Sub

Obviously read my previous post about your current issue.
 
Upvote 0
Did my recommendation change the dates to real dates i.e the formula changed to TRUE?
 
Upvote 0
So I take it the macro is now working ok?
 
Upvote 0

Forum statistics

Threads
1,214,915
Messages
6,122,217
Members
449,074
Latest member
cancansova

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