Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8205795
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T08:24:05+00:00 2026-06-07T08:24:05+00:00

I am writing a script that copies data from one workbook to another. The

  • 0

I am writing a script that copies data from one workbook to another. The latter is being used as a sort of database (not my idea). As a test I am copying ~300 rows of data, of which 3 columns conditional formatting and the rest are plain text. Copying the text is easy and near instantaneous but the formatting is more difficult. Currently I am using the below code to copy the formatted cells:

thisSheet.Range("G" & CStr(rRow), "I" & CStr(rRow)).Copy
masterSheet.Range("G" & CStr(mRow), "I" & CStr(mRow)).PasteSpecial (xlPasteAll)

With ~300 rows this takes about 40 seconds, which is too slow. I cannot copy a range consisting of multiple rows as they are not pasted sequentially.

I experimented with the following code to try and copy formats.

masterSheet.Range("G" & CStr(mRow), "I" & CStr(mRow)).value = thisSheet.Range("G" & CStr(rRow), "I" & CStr(rRow)).value
masterSheet.Range("G" & CStr(mRow), "I" & CStr(mRow)).Font.Color = thisSheet.Range("G" & CStr(rRow), "I" & CStr(rRow)).Font.Color
masterSheet.Range("G" & CStr(mRow), "I" & CStr(mRow)).Interior.ColorIndex = thisSheet.Range("G" & CStr(rRow), "I" & CStr(rRow)).Interior.ColorIndex
'cell color and font color are the only things i am interested in

This code executes in about 3 seconds, but none of the formatting applied by the conditional formatting is copied.

Is there a more efficient way of copying cell and font colors that were applied by conditional formatting?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T08:24:09+00:00Added an answer on June 7, 2026 at 8:24 am

    Try adding this to the start of your code:

    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual
    

    And this to the end of it:

    Application.ScreenUpdating = True
    Application.Calculation = xlCalculationAutomatic
    

    If this isn’t working to improve your speed to where you need I’d suggest hard coding the conditional formatting into the VBA.

    So for example if one of the conditional formatting rules made the cell Red if the number was over 100. Add that check into the VBA while it’s copying the values and set the destination cell ot the desired format based on its value.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a script that logs errors from another program and restarts the program
I'm writing a script to copy compiled files from one location to another. What
I'm writing a script that will convert one file type to another (for some
I am writing a script that checks if given domain is parked or not.
I am writing a script that is retrieving information from file places.sqlite (history) and
I'm writing a script that has to do something like this at one point:
When writing a script that loads data, it's a waste of time to wait
I'm writing a script that copies the stock levels found on my server to
I am writing a script that calls another java program, to perform some tasks.
I'm writing a script that will fold, sort and count text in a file.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.