+ Reply to Thread
Results 1 to 18 of 18

Find first non formatted cell in range

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    06-17-2010
    Location
    Donemana, NI
    MS-Off Ver
    Excel 2007
    Posts
    386

    Find first non formatted cell in range

    Hi,
    I need to use text to columns to convert text to date but I am having an issue that the recorded macro wont work for the newly inputted data it only works from the top of the column until the new data starts, Can I use code and what code to determine which cells within the column are formatted as date so that I can start thereafter?
    Thanks
    Johnny

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,231

    Re: Find first non formatted cell in range

    Option Explicit
    
    Sub sFindLastCell()
    
    Dim lLR As Long, i As Long
    lLR = Range("A" & Rows.Count).End(xlUp).Row
    
    For i = lLR To 1 Step -1
        If Range("A" & i).NumberFormat <> "General" Then
            Debug.Print i; " "; Range("A" & i).Address; " "; Range("A" & i).NumberFormat; " "; Range("A" & i).Value
            Exit For
        End If
    Next 'i
    
    End Sub


    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Forum Contributor
    Join Date
    06-17-2010
    Location
    Donemana, NI
    MS-Off Ver
    Excel 2007
    Posts
    386

    Re: Find first non formatted cell in range

    TMS,
    Sorry I don't really understand the code, How can I incorporate this so that my code then executes from the selected cell down?

    Selection.TextToColumns Destination:=Range("R1"), DataType:=xlDelimited, _
            TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=True, _
            Semicolon:=False, Comma:=False, Space:=False, Other:=False, FieldInfo _
            :=Array(1, 4), TrailingMinusNumbers:=True

  4. #4
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,231

    Re: Find first non formatted cell in range

    Please post a sample workbook for testing. Thanks

  5. #5
    Forum Contributor
    Join Date
    06-17-2010
    Location
    Donemana, NI
    MS-Off Ver
    Excel 2007
    Posts
    386

    Re: Find first non formatted cell in range

    Sample workbook attached, A2:A71 already formatted but when I added new additional data A72:A93 I need the formatted and hence need the code. Hope this sample is enough if you need anything more i.e original text etc., just let me know.
    Many Thanks, Johnny
    Attached Files Attached Files

  6. #6
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Find first non formatted cell in range

    Sub Convertdate2()
        With Worksheets("X47")
           .Range("A2:A" & .Range("A" & .Rows.Count).End(xlUp).Row).TextToColumns Destination:=.Range("R1"), DataType:=xlDelimited, _
            TextQualifier:=xlDoubleQuote, ConsecutiveDelimiter:=False, Tab:=True, _
            Semicolon:=False, Comma:=False, Space:=False, Other:=False, FieldInfo _
            :=Array(1, 4), TrailingMinusNumbers:=True
         End With
    End Sub

  7. #7
    Forum Contributor
    Join Date
    06-17-2010
    Location
    Donemana, NI
    MS-Off Ver
    Excel 2007
    Posts
    386

    Re: Find first non formatted cell in range

    For some reason this isn't working? It runs but it doesn't format the data?

  8. #8
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Find first non formatted cell in range

    Where are the unformatted data? Could you post them?

  9. #9
    Forum Contributor
    Join Date
    06-17-2010
    Location
    Donemana, NI
    MS-Off Ver
    Excel 2007
    Posts
    386

    Re: Find first non formatted cell in range

    File attached below, The data between A2:A71 is already formatted using test to columns and the data below this from A72:A93 is unformatted.
    Thanks Again

    Example_2.xlsm

  10. #10
    Forum Expert nilem's Avatar
    Join Date
    10-22-2011
    Location
    Ufa, Russia
    MS-Off Ver
    2013
    Posts
    3,377

    Re: Find first non formatted cell in range

    Hi Burt_100,
    maybe so
    Sub ttt()
    Dim x
    With Range("A2", Cells(Rows.Count, 1).End(xlUp))
        x = .Value
        .NumberFormat = "mm/dd/yyyy"
        .Value = x
    End With
    End Sub

  11. #11
    Forum Contributor
    Join Date
    06-17-2010
    Location
    Donemana, NI
    MS-Off Ver
    Excel 2007
    Posts
    386

    Re: Find first non formatted cell in range

    nilem,
    Worked on everything except A81 for some reason? it still stays left aligned and when filter is selected it shows as an independent value and not within the "December" heading like the rest?

  12. #12
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Find first non formatted cell in range

    Text to columns function is not doing anything except on the last stage of the wizard( To format the column in to date). You can achieve the same thing using excel formatting.

  13. #13
    Forum Contributor
    Join Date
    06-17-2010
    Location
    Donemana, NI
    MS-Off Ver
    Excel 2007
    Posts
    386

    Re: Find first non formatted cell in range

    Why would the code sometimes skip a row?

  14. #14
    Forum Contributor
    Join Date
    06-17-2010
    Location
    Donemana, NI
    MS-Off Ver
    Excel 2007
    Posts
    386

    Re: Find first non formatted cell in range

    Because i bring the data in as text from the external program the excel date function is not working and hence i need to use text to column or an alternative if anyone can help.

  15. #15
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,231

    Re: Find first non formatted cell in range

    Text to Columns with Date: DMY works for me on the range in column R.

    Regards, TMS

  16. #16
    Forum Contributor
    Join Date
    06-17-2010
    Location
    Donemana, NI
    MS-Off Ver
    Excel 2007
    Posts
    386

    Re: Find first non formatted cell in range

    Ive tried it on column A and it doesnt work for some reason, havnt tried column R yet.

  17. #17
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Find first non formatted cell in range

    You do not need a code.
    I suspect what you are missing is the last part on text to column Wizard. You need to highlight column A, choose date from "Column data format".
    Because you are not choosing date, the data is formatted as General which is the default option.
    It does not matter where the data are or where you the data go.

  18. #18
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,231

    Re: Find first non formatted cell in range

    If you want code, some slight changes to the code you had:

    Sub date1()
    
    Dim rCheck As Range
    Dim ws As Worksheet
    Set ws = Sheets("X47")
    Dim c As Range
    
    With ws
        Set rCheck = Union(.Columns("A"), .Columns("B"), .Columns("Q"), .Columns("R")).SpecialCells(xlCellTypeConstants)
    End With
    
    Application.ScreenUpdating = False
    For Each c In rCheck
        On Error Resume Next
        With c
            .Value = DateValue(.Value)
            .NumberFormat = "dd/mm/yyyy"
            .HorizontalAlignment = xlGeneral
            .VerticalAlignment = xlBottom
    
        End With
        On Error GoTo 0
    Next c
    Application.ScreenUpdating = True
    End Sub

    Regards, TMS

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Macro Multiple Find and Replace with a formatted cell in Excel 2010
    By isasa74 in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 01-31-2014, 08:01 AM
  2. Conditional Format a range of cells if active cell is not in the range to be formatted.
    By anrichards22 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 11-07-2013, 05:49 AM
  3. Find blank cell, insert formula to find median of above cell range
    By lilyeye in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-05-2013, 11:58 AM
  4. 2010 Find/Replace on Formatted cell
    By SumDood in forum Excel General
    Replies: 0
    Last Post: 05-09-2012, 03:48 PM
  5. [SOLVED] Converting 'General' formatted cells to Text formatted cell using.
    By Zahid Khan in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-12-2005, 04:06 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1