HI AB33 WOW Just checked it and it really works really great. So thanks allot just fantastic code. I managed to get it to work with below 2 codes and one column more. But yours code so wow. Thanks allot
My clumsy but working 2 codes.
Sub RunMacroOnAllSheetsToRight()
Dim a As Integer
a = ActiveSheet.Index 'Save current sheet
For i = a To Sheets.Count
Call MyFunction(i)
Next i
Sheets(a).Activate 'At the end, activate original sheet
End Sub
Function MyFunction(i)
Sheets(i).Activate 'Activate each sheet
'Code goes here
Call DDMMYYSpain1
End Function
Option Explicit
Sub DDMMYYSpain1()
Dim ws As Worksheet
Dim rCell As Range
Dim rng As Range
Set ws = ActiveSheet
Set rng = ws.Range("K2:K" & Range("K" & Rows.Count).End(xlUp).Row)
For Each rCell In rng
If Len(rCell) Then
rCell.NumberFormat = "@"
rCell.Value = Format(rCell.Value, "DDMMYY")
End If
Next rCell
Set rng = ws.Range("L2:L" & Range("L" & Rows.Count).End(xlUp).Row)
For Each rCell In rng
If Len(rCell) Then
rCell.NumberFormat = "@"
rCell.Value = Format(rCell.Value, "DDMMYY")
End If
Next rCell
Set rng = ws.Range("N2:N" & Range("N" & Rows.Count).End(xlUp).Row)
For Each rCell In rng
If Len(rCell) Then
rCell.NumberFormat = "@"
rCell.Value = Format(rCell.Value, "DDMMYY")
End If
Next rCell
Set rng = ws.Range("AR2:AR" & Range("AR" & Rows.Count).End(xlUp).Row)
For Each rCell In rng
If Len(rCell) Then
rCell.NumberFormat = "@"
rCell.Value = Format(rCell.Value, "DDMMYY")
End If
Next rCell
End Sub
Bookmarks