How Do You Select A Range Of Cells On Another Worksheet Using The Cells Property

Apr 19, 2007

I seem to be going round and round in circles with this, but I'm sure it should be easy.

I'm just trying to select a range of cells in Sheet2 of my workbook.
I've tried many different bits of code, including:

Dim namesTotal As Integer

namesTotal = 2500

Sheets("Sheet2").Activate
ActiveSheet.Range(Cells(1, 1), Cells(namesTotal, 8)).Select

(According to the Microsoft website, this is supposed to be the way to do it?)

View 10 Replies


ADVERTISEMENT

Referencing Range With Cells Property?

Jan 8, 2014

I have been stuck in this piece of code. Depending on what I try, I get instances of 1004 run time error.

When this code is running, the sheet is not the active one. I tried to activate as well, with no success.

Code:
Sub WriteRankData(Region As String)
Dim i As Integer, z As Long
With shCurrentYear
For i = 9 To 41 Step 4
If .Cells(1, i) = Region Then

[code]....

View 1 Replies View Related

Copy Data In Non-blank Cells Within Range And Paste Into Cells On Another Worksheet

Jan 19, 2012

I have data in some of the cells within range A26:A39

These cells are populated via an IF function on another worksheet. Even though the cells appear blank (as in the value returned is ""), there is a formula in these cells. I think it's called formula blank?

I am looking for a way to copy the data from the cells within the range which are not blank (ie: not = "") and paste this data elsewhere on the sheet in a list with no blank spaces in between.

I anticipate that there will be 4 non blank cells within this range.

Ideally I would have data from the nonblank cells copied and pasted to cells
A40
A41
A42
A43

View 5 Replies View Related

When Protect A Worksheet Then Only UNLOCKED Select CELLS

Oct 5, 2006

Ok I've spent over 2 hours reading MANY peoples issues with this "BUG". Back in 2003 was the earliest... no one has an answer that works.

When you protect a worksheet and only have UNLOCKED CELLS selected...somehow through loading and unloading the file... you can select locked cells....
I can not find a pattern but many people have had this issue all with no concrete answers.

Just by loading and saving, exit and loading and saving, exit and loading.... i can now select locked cells that I previously couldn't. (I can't do anything as it's still protected...) It's a pain because it wrecks my tab flow.

View 9 Replies View Related

Inputbox Method: Cannot Select Cells In Worksheet

Aug 26, 2009

I'm using an inputbox to let the user select a range of cells. Here's the line
Set MyRange = Application.InputBox("Select cells with numeric data", Type:=8)

When the inputbox comes up, it won't let the user click any cells (or anywhere in the worksheet, for that matter). The cell/range reference has to be typed in manually.

View 9 Replies View Related

"Unable To Set The Hidden Property Of The Range Class" When Unhiding Cells

Oct 30, 2009

I'm trying to unhide all the cells in a worksheet, but keep getting the "Unable to set the Hidden property of the Range class" error and I'm not sure what to do.

View 2 Replies View Related

Copy Cells And Range Of Cells To New Worksheet

Apr 22, 2009

I have an excel workbook that I have created to use in the creation of purchase orders. I have a spot for the vendor in cell D10 and my items are in the range of B17 to N17.

What I would like to have is a macro that I can assign to a button that does the following.

I have a worksheet called "Purchase Order" that has all the information in it.

When you click on a button named "Process", it will take everything entered into B17 - N28 and copy it to a worksheet named "PO# History" starting in cell B2 and moving down. Each time I click on "Process" I need the information in the range above to get entered into the next empty line on the "PO# History" worksheet.

This way I can maintain a list of items purchased and then play with them in a pivot table/graph and such.

Also, What I need it to do also is when process is clicked, the macro needs to pull the vendor name from cell D10 and put it in column A on "PO# History" for each row it adds from B17-N28.

View 9 Replies View Related

Select Specific Cells And Transfer Data Into New Row In Different Worksheet

Apr 7, 2014

Select Specific Cells And Transfer This Data Into A New Row In A Different Worksheet, how can I do this in a macro?

I am trying to pull a select 6,048 rows out of 288,000 rows.

View 5 Replies View Related

Select Specific Cells And Transfer This Data Into A New Row In A Different Worksheet

Mar 5, 2009

I am trying to select specific cells and transfer this data into a new row in a different worksheet. The code i am using i used sucessfully on a user form to take the entries from text boxes and place in a row in a new worksheet. I would like to try and do the same thing but on a worksheet rather than a user form. My code is

View 2 Replies View Related

Can't Select Range Of Cells

Feb 28, 2014

Why the following code gives me an error. I have so much trouble with ranges, I use the syntax as it is prescribed. Here is the code. I will include some code lines underneath since I imagine they wont work either.

[Code] .....

I eventually will be turning the range statements into copy and paste instead of select. At the moment I am using select to make sure the proper cells are being selected.

I am also attaching my complete workbook as well.

Attached File : Therapy Tracker - Tester V2.3 -deleted logo.xlsm‎

View 2 Replies View Related

How Do I Select A Range Of Cells Using Vb

Mar 22, 2007

How can I select a range of cells dynamically, not know how many cells down for two columns that I will need to select, there will be a blank cell at the end of the needed range.

View 9 Replies View Related

Getting Runtime Error 9 When Select Group Of Cells In Non-active Worksheet?

Feb 26, 2014

I am trying to select a group of cells in an inactive worksheet from code in a module but I keep getting a run-time error 9 message and I cant seem to find the syntax problem.

I pasted my code below and the error occurs in the last line before the end sub statement.

[Code].....

View 12 Replies View Related

Select A Range Of Non-adjacent Cells

Jun 29, 2006

I have a series of data values in non-adjacent columns in an excel spreadsheet.

In the following example, assume the | (vertical bar) refers to the start of
a new cell:

F|45|A|30|F|15|F|10

Using the SUMIF formula, I want to add all numbers which are preceded by a
cell containing the letter F.

SUMIF(A1:G1,"F",B1:H1)

What I need to do is specify a range of every second cell in the row (starting with Cell A1) for validating they equal F, and a range of the alternating cells (starting in column B1) for the range containing the data to add. How can I specify these ranges (I can't name each cell individually as I have more than 30 cells to add up in my real life situation and the IF function allows selection of no more than 30 values)?

View 12 Replies View Related

Select Unlocked Cells In A Range

Oct 4, 2012

I'm looking for a macro that only selects the unprotected cells in a range. So that I can copy a formula in these cells.

I found the below macro on the web but it will select all the unprotected cells in the worksheet. I guess this one can easily be adjusted to only select the cells in a range, but I do not know how to do this.

Code:

Sub SelectUnlockedCells()
Dim WorkRange As Range
Dim FoundCells As Range
Dim Cell As Range
Set WorkRange = ActiveSheet.UsedRange
For Each Cell In WorkRange
If Cell.Locked = False Then

[Code]...

View 4 Replies View Related

Select Cells From Range That Contains Comma?

Jun 21, 2013

I have come up with this bit of code by joining in two separate sets of code that I used earlier. What I want to do is this, for a given range I need to find each cell that has a comma and once that cell is found a formula has to be applied in a cell few columns to the left.. Here is the code that I am using..

Code:
Sub Macro8()
Dim i As Long
For i = 1 To 1000

[Code]...

The sheet can be downloaded from here, I want column H to be (Col B / Col C) whenever Col A has a cell with comma in it. For this sheet col H needs to be populated 3 in places. The code above does it only for first instance.

View 6 Replies View Related

Macro That Will Select A Range Of Cells In A Given Row

May 30, 2007

I am looking for a macro that will allow me to select the range of A5 to the last column with data in row 5

View 9 Replies View Related

Select Dynamic Range Of Cells

Feb 9, 2008

I need to select data starting from cell 16B until 16K until the end of excel file... i will use this to export data into database later... I have attached a sample excel file with records needed to be selected

View 3 Replies View Related

Select Blank Cells In Range

Mar 12, 2008

I have a spreadsheet which always contains data beginning in column A and through row H. However, there may be blank cell(s) in columns B through G. Therefore, if I use

Range(Selection, Selection.End(xlDown)).Select

it will not take me to column H if say column d has a blank cell. The same applies to my rows which always vary.

View 3 Replies View Related

Allow User To Select A Range Of Cells

May 9, 2008

I'm trying to create a macro for another user that she will use repeatedly for many different spreadsheets. Each spreadsheet will have a varying amount of rows that will need to be exported to a different file. She will highlight the cells she wants exported and then hit a button to do so. My problem is this: how do I code a macro so that it will know which cell is the beginning of her selection and which is the end?

View 2 Replies View Related

Select Huge Range Of Cells - A1:c24999

Aug 29, 2009

I have a sheet that has 65000 rows and 3 columns, I need to load this sheet into a system that will only deal with 25000 rows at a time. How do you do a huge range select with Excel?

I need to select range a1:c24999 cut it out and paste it into another sheet. I have about 75 of these these sheets to do is there a way with a formula, a script or? to do these huge selects?

I am a Mac user, running MS office 2008 for Macintosh.

View 11 Replies View Related

Protect Select Range Of Cells From Being Changed?

Mar 5, 2013

How do I protect a select range of cells from being changed? There may be some formulas in certain cells, which produce data based on other worksheet cells. These cells are not for user data input, but for data output only. I don't want end users to acidently delete the formulas in cetain range of cells, by entering a value in the cell, which then will write over the formula.

View 5 Replies View Related

Range Select Then Count Down 10 Cells Below And Copy

Jan 13, 2009

I am having a problem putting a range select statement in my macro. Here is what I'm trying to do. I want to select E1, then count down 10 cells below and copy. My sheet is filtered, so those rows are not continues. When I do the record a macro it highlights the rows and it looks like this (e10:e506, but it's only 10 items). I only want it to count down 10 cells and copy. Is there a statement for this.

View 3 Replies View Related

Select A Contiguous Range Of Cells In A Column

May 7, 2009

I'm trying to select a contiguous range of cells in a column and then iterate over that. I keep getting error "91", object variable not set. I have:

View 5 Replies View Related

Copying Ranges Using Cells To Select Range

Apr 22, 2014

Why the following doesn't work?

Sheets("Sheet1").Range(Cells(1,1), Cells(20,1)).Copy Sheets("Sheet2").Range("A1:A20")

If I can get his to work, I will be able to use variables for the Cells arguments to give the functionality I want.

View 3 Replies View Related

Select Range Of Cells And Post Them Into One Cell

Sep 22, 2008

I’d like to copy a range of cells: (A1 – A4) and paste them into Cell A5, but here’s the rub: I would like the values after I paste them to be separated by commas.

View 9 Replies View Related

Select All Unlocked Cells In Noncontiguous Range

Apr 13, 2009

I want to do is clear all the cells on a worksheet that are not locked. Problem is that any cell could be locked, no rhyme or reason.

View 9 Replies View Related

Select Cell With Numbers In From Range Of Cells Containing Words

Mar 26, 2014

I have a column with rows from 41:254, the first cell contains a word, and the next is blank, and this repeats the whole way down.

a previous macro i run changes one of the cells in the range (one of the ones containing a word) to a number value, i want to write a further macro to select this cell that has now changed. when it changes it will be the only cell in the range with a number in.

View 4 Replies View Related

Loop To Select Range Of Cells Representing A Month....

Jan 30, 2008

I've never worked with Excel macros prior to today. I'm working on this for a friend.

I've got this sheet that's going to a web address, importing a table from the page, and making a line graph of the data. I got all that to work fine (after a lot of trial and error). Now I've got the data, and I want to make a scatter plot of it...

Here's the thing. I want each month of the data represented as a line on the plot.

This is hard to explain. It looks like this:
[url]

So from there, I want a loop to scroll through the dates and select a range that represents January, a range that represents February, etc, so I can save those ranges as variables and make a scatter plot with 12 curves on it.

Here is the code I have so far, in case you want to see it, not sure why you might need to though.

View 14 Replies View Related

Select Dynamic Range Based On Non-empty Cells

Aug 7, 2009

I require code to identify the last row in column 'A' that contains data, and then to select every row up to that one, and each column up to 'H'. My data begins on row 3, and the rows with data varies from row 7 through 120. The columns with data is constant so there is no need to test in that direction.

View 2 Replies View Related

Select Range Of Cells Based On UserForm Input Value?

Jun 18, 2012

So I'm creating a UserForm that takes user input to create a worksheet based on the values input. My question is: How to select a range of cells based on a variable input value? For example, it asks how many competitors there are, and the user can input 5, 8, 10, etc. So I want that many cells in Row 1 selected, whatever the value input is.

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved