+ Reply to Thread
Results 1 to 3 of 3

Help with column

  1. #1
    lennymos123
    Guest

    Help with column

    I have a datafeed that comes to me everyday i need to format one column

    of around 1000 rows so it multiples the total column but a 1000 so
    getting rid of the decimal point i.e =A3100.00 becoming 10000 , i also

    need to do this using a macro. can anyone help=20


    Regards=20

    Paul


  2. #2
    Bob Phillips
    Guest

    Re: Help with column

    Dim iLastRow As Long
    Dim i As Long

    iLastRow = Cells(Rows.Count, "A").End(xlUp).Row
    For i = 1 To iLastRow
    Cells(i, "A").Value = Cells(i, "A").Value * 100
    Next i

    --
    HTH

    Bob Phillips

    "lennymos123" <[email protected]> wrote in message
    news:[email protected]...
    I have a datafeed that comes to me everyday i need to format one column

    of around 1000 rows so it multiples the total column but a 1000 so
    getting rid of the decimal point i.e £100.00 becoming 10000 , i also

    need to do this using a macro. can anyone help


    Regards

    Paul



  3. #3
    lennymos123
    Guest

    Re: Help with column

    cheers bob it worked perfect and helped me out alot

    many thanks


+ 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