Results 1 to 10 of 20

Thread: Speed Up ListBox Getting Updated Filled Very Slow

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Senior Member
    Join Date
    Jun 2012
    Posts
    337
    Rep Power
    14
    Why don't you post a sample workbook ???

  2. #2
    Junior Member
    Join Date
    Oct 2012
    Posts
    26
    Rep Power
    0
    Quote Originally Posted by snb View Post
    Why don't you post a sample workbook ???
    See Example.xlsm

    When i use
    Code:
    .Cells(Rx1, 3).Resize(6).Value = Application.Transpose(var)
    it works but then the data wil be placed in 1 column

    When i use
    Code:
    .Cells(Rx1, 3).Resize(, 6).Value = var
    it places the content in 6 column on 1 row what i need but then the cell propertys will not be used

  3. #3
    Junior Member
    Join Date
    Oct 2012
    Posts
    26
    Rep Power
    0

    Solved

    Solved the problem using
    Code:
    .Cells(Rx1, 3).Resize(, 6).Value = Application.Transpose(var)
    one small change...but don't know why that function application.transpose does the trick.

Similar Threads

  1. Speed up excel to word VBA
    By bcostin in forum Excel Help
    Replies: 3
    Last Post: 05-22-2012, 10:49 AM
  2. Get the last updated file name.
    By princ_wns in forum Excel Help
    Replies: 3
    Last Post: 04-12-2012, 07:59 AM
  3. Speed up Loop VBA
    By PcMax in forum Excel Help
    Replies: 15
    Last Post: 04-09-2012, 04:20 PM
  4. Get last Filled Cell address in a Range.
    By Rajan_Verma in forum Rajan Verma's Corner
    Replies: 3
    Last Post: 03-24-2012, 01:08 AM
  5. Last Filled Cell Having Text
    By Excel Fox in forum Excel and VBA Tips and Tricks
    Replies: 5
    Last Post: 07-18-2011, 02:33 PM

Posting Permissions

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