Friday, September 23, 2016

How to Resolve - copy a range of cells based on a cell value?

copy a range of cells based on a cell value

I need a macro that will copy and paste an X number of rows when I enter a number of rows.
 
Example.
 
My range to copy B5-G5.  If I enter 5 in cell a1, I want the macro to run automatically as soon as I enter the 5 and hit enter.
The macro would copy my range B5-G5 all the way to B10-G10.  My range consist of constants and formulas.
 
Hope someone can help.

Keys to the Problem copy a range of cells based on a cell value

Download SmartPCFixer to Fix It (Free)

...If I enter 5 in cell a1, I want the macro to run automatically as soon as I enter the 5 and hit enter. The macro would copy my range B5-G5 all the way to B10-G10 ....

That's actually a total of 6 rows (inclusive of row 5), but try this,

Right-click the worksheet's name tab and select View Code.
Paste the following into the pane titled something like
Book1 - Sheet1 (Code).
Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Range("A5")) Is Nothing And IsNumeric(Target.Value) Then
        Application.EnableEvents = False
        Range("B6:G999").ClearContents
        Range("B5:G5").Copy Destination:=Range("B5:G" & (Target.Value + 5))
        Application.EnableEvents = True
    End If
End Sub

Edit the second line (e.g.
ClearContents) if the range is too large. Press
Alt+Q to close the VBE and return to your worksheet.
Your workbook will have to be saved as a
macro-enabled workbook.

Manually editing the Windows registry

Caution: Unless you an advanced PC user, please do not edit the Windows registry manually.

Because of this risk, we highly recommend using a trusted registry cleaner such as SmartPCFixer Using a registry cleaner automates the process of finding invalid registry entries, missing file references (like the one causing your MACHINE_CHECK_EXCEPTION error), and broken links within the registry. A backup is automatically created before each scan, with the ability to undo any changes in a single click, protecting you against the possibility of PC damage. The best part is that repairing registry errors can also dramatically improve system speed and performance.

  • Click the Start button.
  • Type "command" in the search box... DO NOT hit ENTER yet!
  • While holding CTRL-Shift on your keyboard, hit ENTER.
  • You will be prompted with a permission dialog box.
  • Click Yes.
  • A black box will open with a blinking cursor.
  • Type "regedit" and hit ENTER.
  • In the Registry Editor, select the Error 0x9C-related key (eg. Windows Operating System) you want to back up.
  • From the File menu, choose Export.
  • In the Save In list, select the folder where you want to save the Windows Operating System backup key.
  • In the File Name box, type a name for your backup file, such as "Windows Operating System Backup".
  • In the Export Range box, be sure that "Selected branch" is selected.
  • Click Save.
  • The file is then saved with a .reg file extension.
  • You now have a backup of your MACHINE_CHECK_EXCEPTION-related registry entry.

The next steps in manually editing your registry will not be discussed in this article due to the high risk of damaging your system. If you would like to learn more about manual registry editing, please see the links below.

Another Safe way to Repair the Problem: copy a range of cells based on a cell value:

How to Fix copy a range of cells based on a cell value with SmartPCFixer?

1. Download SmartPCFixer . Install it on your computer.  Click Scan, and it will perform a scan for your computer. The errors will be shown in the scan result.

2. After the scan is done, you can see the errors and problems which need to be fixed.

3. When the Fixing part is finished, your computer has been speeded up and the errors have been fixed


Related: How Can You Update & Download NVidia 6100, 6800 GS/XT Display Driver v.260.89 WHQL,Where to Download NVidia GeForce 8800 GT WHQL-certified driver v.196.21,How to Update & Download NVidia GeForce Go 7400 Display Driver v.260.19.12,[Solved] Download NVidia GeForce GTX 460M Driver v.331.82,Download NVidia Quadro Plex Model IV VGA Driver v.304.43 Certified,Way to Download RealTek RTL8100C(L) Driver v.5.01,Way to Download RealTek RTL8100E Drivers v.694,Way to Update & Download RealTek RTL8101L Auto Installation Program v.6.110 driver,Method to Update & Download RealTek RTL8111G PXE and RPL ROM code v.2.58 driver,How to Update & Download RealTek RTL8411B(N) Driver v.10.003,Best Way to Update & Download ASUS A53SV nVidia Graphics Driver v.8.17.12.6686,Method to Herunterladen ASUS K75VJ Intel Rapid Storage Technology Treiber v.11.6.0.1030,How Can You Update & Download ASUS CG8580 Intel Chipset Driver v.9.3.0.1019,Method to Update & Download ASUS K41VD Intel INF Update Driver v.9.1.1.1015,Way to Update & Download ASUS Pro70T NB Probe v.3.0.0026 driver
Read More: Troubleshoot:Conversion of Excel & Word Starter 2010 files by Microsoft without Warning or Notice,Solution to Error: Create a excel form with combo and option boxes,Troubleshooter of Error: create installer for multiple windows enviroments,Solution to Error: copy to hard drive when installing Encarta WA 2001 stops working after folder has been created on HD,How to Fix Problem - creating a table of contents as breadcrumbs throughout a long document?,Closing Internet Explorer causes error,Compare 2 Tables and Calculate the PROFIT Faster,Computer goes to Windows Boot Manager after Start,Connect to one of my network computer remotely when don't allow exception box Marked,computer locking up randomly

No comments:

Post a Comment