Friday, September 23, 2016

Tech Support: copy only selected cells from different sheets in the same workbook

copy only selected cells from different sheets in the same workbook

Hi,
I'd like to copy and paste only selected cells from different sheets in the same workbook.
I want to copy C3, E3 and I4 to A4,B4 and C4.
The headers are in row 3.
I have sheets that I already imported from the other workbook.
I got 12 sheets imported now and this number is changing.
Sometimes I will get 14 sheets or 9 sheets, depend on sheets that I import.

Dim anyWS As worksheet
Do While anyWS <> ""
              ThisWorkbook.Sheets("Chart").Range("A4") = anyWS.Range("C3")
              ThisWorkbook.Sheets("Chart").Range("B4") = anyWS.Range("E3"l)
              ThisWorkbook.Sheets("Chart").Range("C4") = anyWS.Range("I4")
Loop
I think I need some range for looping but I don't know how to set up.
How can I do this?
Thanks

Keys to the Problem copy only selected cells from different sheets in the same workbook

Download Error Fixer (Free)

This will copy the values appropriately from every worksheet in the workbook except "Chart" to
"Chart".
Sub xferChartData()
    Dim r As Long, ws As Worksheet
    For Each ws In Sheets
        If ws.Name <> "Chart" Then
            Sheets("Chart").Range("A4").Offset(r, 0) = ws.Range("C3").Value
            Sheets("Chart").Range("B4").Offset(r, 0) = ws.Range("E3").Value
            Sheets("Chart").Range("C4").Offset(r, 0) = ws.Range("I4").Value
            r = r + 1
        End If
    Next ws
End Sub
The above assumes that the values in the Chart worksheet's target cells have been cleared.

Open Action Center by clicking the Start button Picture of the Start button, clicking Control Panel, and then, under System and Security, clicking Review your computer's status.

Update and run your antivirus software. Windows doesn't come with antivirus software, but Action Center can often monitor the antivirus software that you or your computer manufacturer have installed.

Recommended Method to Repair the Problem: copy only selected cells from different sheets in the same workbook:

How to Fix copy only selected cells from different sheets in the same workbook with SmartPCFixer?

1. Click the button to download Error Fixer . Install it on your computer.  Open it, and it will scan your computer. The junk files will be shown in the scan result.

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

3. The Fixing part is done, the speed of your computer will be much higher than before 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: Tech Support: Control Panel and Windows Explorer Won't Start,[Solution] Consider Replacing Battery in windows 7 home premium,How to Fix - Cursor freezes, then operates nomally, then freezes witout regard to program it is used in.?,Fast Solution to Error: Creating a Directory in Word 2007,Could I get windows 7 back? [Solved],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