+ Reply to Thread
Results 1 to 6 of 6

Change Format of Entire Column

Hybrid View

Guest Change Format of Entire Column 04-28-2006, 11:55 PM
Guest Re: Change Format of Entire... 04-29-2006, 12:35 AM
Guest Re: Change Format of Entire... 04-29-2006, 07:40 AM
Guest Re: Change Format of Entire... 04-29-2006, 07:55 AM
Guest Re: Change Format of Entire... 04-29-2006, 12:55 PM
Guest Re: Change Format of Entire... 04-29-2006, 09:10 PM
  1. #1
    Bill Barber
    Guest

    Change Format of Entire Column

    I have imported our loan transfer file over the internet. For some reason
    two columns "B" and "Y" come in all messed up.

    The column should contain an Integer, however for some reason it can show as
    anything, but mostly different Date Formats.

    I noticed That when I clicked on the Column and changed the Column Format to
    General, all of the transferred numbers displayed correctly.

    The manager wants me to do it programmically and does not want anyone to do
    it manually.

    I know Visual Basic fairly well, but this is the first time (believe it or
    not) that I have ever used Excel.

    I purchased a couple of Excel books (Both Microsoft Press) but they do not
    show how to change a column, just individual cells and/or rows.

    I would appreciate if someone who knows can get me started with some script
    as to how to do this.

    Any help will be really appreciated.

    Thanks a Lot

    Bill

  2. #2
    Ken Johnson
    Guest

    Re: Change Format of Entire Column

    Hi Bill,

    Columns("B:B").NumberFormat = "General"
    Columns("Y:Y").NumberFormat = "General"

    is one way.

    Ken Johnson


  3. #3
    Bill Barber
    Guest

    Re: Change Format of Entire Column

    Ken;
    Thanks for getting back to me!
    I am getting a 13 Error Type Mismatch.

    Here is the code I inserted!

    Application.Goto Reference:="mcrFixColumnB"

    Columns("B.B").NumberFormat = "General"

    ChDir "C:\FirstNM"

    Application.Run "march06wA.csv!mcrFixColumnB"

    End Sub

    Is this correct? If it is what do we try next?

    "Ken Johnson" wrote:

    > Hi Bill,
    >
    > Columns("B:B").NumberFormat = "General"
    > Columns("Y:Y").NumberFormat = "General"
    >
    > is one way.
    >
    > Ken Johnson
    >
    >


  4. #4
    Bill Barber
    Guest

    Re: Change Format of Entire Column

    Ken;

    I also tried

    Thanks for getting back to me!
    Same Error!

    Getting a 13 Error Type Mismatch.

    Here is the code I inserted!

    Application.Goto Reference:="mcrFixColumnB"

    Columns("B.B").NumberFormat = "0"

    ChDir "C:\FirstNM"

    Application.Run "march06wA.csv!mcrFixColumnB"

    End Sub

    Is this correct? If it is what do we try next?

    "Bill Barber" wrote:

    > Ken;
    > Thanks for getting back to me!
    > I am getting a 13 Error Type Mismatch.
    >
    > Here is the code I inserted!
    >
    > Application.Goto Reference:="mcrFixColumnB"
    >
    > Columns("B.B").NumberFormat = "General"
    >
    > ChDir "C:\FirstNM"
    >
    > Application.Run "march06wA.csv!mcrFixColumnB"
    >
    > End Sub
    >
    > Is this correct? If it is what do we try next?
    >
    > "Ken Johnson" wrote:
    >
    > > Hi Bill,
    > >
    > > Columns("B:B").NumberFormat = "General"
    > > Columns("Y:Y").NumberFormat = "General"
    > >
    > > is one way.
    > >
    > > Ken Johnson
    > >
    > >


  5. #5
    Tom Ogilvy
    Guest

    Re: Change Format of Entire Column

    Use a semicolon rather than a period:

    Columns("B:B").NumberFormat = "General"

    rather than

    Columns("B.B").NumberFormat = "General"

    --
    Regards,
    Tom Ogilvy


    "Bill Barber" <BillBarber@discussions.microsoft.com> wrote in message
    news:26D65702-A367-461A-94CC-58D46078DDAE@microsoft.com...
    > Ken;
    >
    > I also tried
    >
    > Thanks for getting back to me!
    > Same Error!
    >
    > Getting a 13 Error Type Mismatch.
    >
    > Here is the code I inserted!
    >
    > Application.Goto Reference:="mcrFixColumnB"
    >
    > Columns("B.B").NumberFormat = "0"
    >
    > ChDir "C:\FirstNM"
    >
    > Application.Run "march06wA.csv!mcrFixColumnB"
    >
    > End Sub
    >
    > Is this correct? If it is what do we try next?
    >
    > "Bill Barber" wrote:
    >
    > > Ken;
    > > Thanks for getting back to me!
    > > I am getting a 13 Error Type Mismatch.
    > >
    > > Here is the code I inserted!
    > >
    > > Application.Goto Reference:="mcrFixColumnB"
    > >
    > > Columns("B.B").NumberFormat = "General"
    > >
    > > ChDir "C:\FirstNM"
    > >
    > > Application.Run "march06wA.csv!mcrFixColumnB"
    > >
    > > End Sub
    > >
    > > Is this correct? If it is what do we try next?
    > >
    > > "Ken Johnson" wrote:
    > >
    > > > Hi Bill,
    > > >
    > > > Columns("B:B").NumberFormat = "General"
    > > > Columns("Y:Y").NumberFormat = "General"
    > > >
    > > > is one way.
    > > >
    > > > Ken Johnson
    > > >
    > > >




  6. #6
    Ken Johnson
    Guest

    Re: Change Format of Entire Column

    Sorry Bill, I was away from the computer.
    I trust Tom's fixed it up.

    Ken Johnson


+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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