VBA Update new cell with values and format

ManUBlueJay

Active Member
Joined
Aug 30, 2012
Messages
302
Office Version
  1. 2016
Platform
  1. Windows
I am trying to update a range of cells in my database which is an excel sheet with another input range.
The range in the database is named "MyRange". The Input Range is named "Input"

When I use this code:
Range("MyRange") = Range("Input") nothing happens

When I use:
Range("MyRange") = Range("Input").values, it updates but does not bring across my formats which includes one bold cell and 3 regular.
How can I update MyRange with the values and the formats.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Copy/PasteSpecial/Format.
The code can be obtained from the macro recorder.
 
Upvote 0
That requires sheet switching and feels clumsy.
What I have is instantaneous just missing the formats.
 
Upvote 0
First get the code from the macro recorder and tweak it to avoid sheet switching.
If you don't know how to tweak it, post the code and someone will do it for you.
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,207
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top