Numbers   Select a large range of cells

I select a cell to enter a formula. The key board pops up and I select the Average function. I then try to select a large range of cells, but unable to do so because the Numbers screen will not scroll. I select the cell directly above the keyboard, but when I move my finger up to select 25 rows, I can only move up about 6 rows.
This is using Numbers on an iPad. What advice can you give me for correcting my error.
Thanks

Here is an answer that worked great for me. I found it here:
Concatenating a Range in Excel
You'll have to adapt it for your spreadsheet:
A
B
(result)
1
Apple
2
Baker
=A1&A2
AppleBaker
3
Charlie
=B2&C1
AppleBakerCharlie
4
Denver
=B3&C2
AppleBakerCharlieDenver
5
Edward
(etc.)
You just concatenate two cells together (using the '&' concatenation operator), and then in the next cell you just add on to the end of the result. So that by the end, you have them all in one long string.
You might say "But I have to write out all those formulas". No. As you know, you can just copy the formula to the next cell and Numbers will change the references for you.

Similar Messages

  • Select a range of cells?

    How do I select a range of cells to, say, copy and paste? In Excel I highlighted the cell and at the bottom right corner I clicked on a dark cross and dragged it to the last cell I wanted to highlight. How do I do this in Numbers.? I am in the process of convertin MS Word and Excel files to Pages and Numbers. All comments welcome.

    j.,
    From the Numbers Help Menu, choose Numbers User Guide and download it.
    Jerry

  • Which formula(a) do I use to select any value that is than 0 but 7 out of a range of cells and sum them.

    I'm working on a sheet that I want to use to select a specific part based on values created by the sum of values in other cells. I am down to the point where I need to select a low range of numbers
    If the sum of cell D5 equals any sum between 1-15 will equal = part 1
    If the sum of cell D5 equals any sum between 16-23 will equal = part 2 ,
    If the sum of cell D5 equal antsy sum between 24-32 will equal part 3.
    I'm at a loss how to make one formula or combination of formulas do this.
    Thanks in advance.
    Big Al Hur

    Hi Al,
    The confusion arises from your having asked two separate questions, one in the subject line, the other in the body of your initial post.
    1.
    How do I sum only the values greater than zero and less than 7 in a range of cells?
    This formula supplied by SGIII does what you have asked there:
    =SUMIFS(A,A,">0",A,"<7")
    The syntax is:
    SUMIFS(sum-values, test-values, condition, test-values, condition…)
    sum-values ( A ) is the range of cells containing the values to be summed (all the body cells in column A)
    test-values and condition come in pairs. the first names the range of values to be tested, the second names the condition that must be met.
    In this formula, the test-values in each pair are the same as the sum values.
    condition ( ">0" ) is the first condition that must be met by these values. (greater than zero)
    the second condition ( "<7" ) is the second condition that must be met (less than seven)
    To be included in the sum, a value in the list must meet both conditions: It must be greater than 0 AND less than 7. IN SG's example, there are two values that meet both conditions, 2 in A2 and 6 in A5, that meet both conditions. Their sum, 8, is shown in A10, whch is the cell containing the formula.
    2
    If the sum of cell D5 equals any sum between 1-15 will equal = part 1
    If the sum of cell D5 equals any sum between 16-23 will equal = part 2 ,
    If the sum of cell D5 equals any sum between 24-32 will equal part 3.
    This formula supplied by SGIII, and the Lookup table that goes with it, does what you have asked here.
    =VLOOKUP(D5,Lookup::A:B,2,close-match)
    Close-match means 'the largest value that is less than or equal to' the search-value.
    The search-value is the value in D5
    VLOOKUP searches in the leftmost column (A) of the lookup table (columns A and B of the table named Lookup).
    With "close-match" specified:
    any value that is equal to or greater than 0 and less than 16 will be matched by the 0 in A2. VLOOKUP will return the value in the same row of column 2 (B) of the table: "Part 1"
    any value that is equal to or greater than 16 and less than 24 will be matched by the 16 in A3. VLOOKUP will return the value in the same row of column 2 (B) of the table: "Part 2"
    any value that is equal to or greater than 24 will be matched by the 24 in A4. VLOOKUP will return the value in the same row of column 2 (B) of the table: "Part 3"
    While this is not an exact match with your description above, it will perform exactly as you requested IF the value in D5 is never less than 1 and never greater than 32.
    If the possible range is greater than that, I would suggest the changes shown below to the formula and to the lookup table. The column containing numbers is column D, and represents values in D5. Column E shows the result for each value using the given formula and lookup table (LU A). Column F shows results for the same values using the revised formula and lookup tble (LU B):
    Original                              =VLOOKUP(D,LU A :: A:B,2,1)
    Revised formula: =IFERROR(VLOOKUP(D,LU B :: A:B,2,1),"N//A")
    In the revision, IFERROR takes care of the negative values in D2 and D3. The zero value in D4 and in the last row of column D and the overflow values (greater than 32) are handled by the revisions to the lookup table.
    Regards,
    Barry

  • How do I insert  a cell or range of cells in Numbers?

    From what I've read, one has to highlight and move cells to create the space for the new cells.  This may be fine for small tables, but I have an inventory that currently has over 2000 lines of data.  So if I need to add a line of data at row 2, then I would have to highlight 1998 lines of text, which takes a few minutes (holding down the shift and down arrow keys, which only highlights the cells on the screen, so I have to scroll down until my highlighted area ends at the top of the screen, highlight the current page, scroll down, highlight, etc., until I get all 1998 lines highlighted). Then drag them down one line. Then go back up and enter the data.
    Can I just say that that is ridiculously complicated in the year 2012 (almost 2013)?  Why not just have the same insert function that Excel has, where you can insert the cell or range of cells with a couple of keystrokes?
    Is there some easier way to manage this data on my Macbook? Or did I waste $2000 on this computer?   Thanks.

    You may have wasted $20 on Numbers? I don't use it - I've been an Excel user since 1985 and it's still what I use today.
    If, indeed, there's no shortcut for the procedure that you describe (and we'll have to wait for some Numbers experts to chime in on that) why not just buy MS Office 2011 for Mac? You can get a trial version here -> https://www.microsoft.com/mac/trial.
    But, hopefully, a Numbers user will come along with a simple solution...
    Clinton

  • Select a range of cells using ActiveCell

    I am trying to select a range of cells using ActiveCell.Offset
    This is really testing me, up to now I have this:-
    Private Sub CommandButton1_Click()
        Windows("example.xls").Activate
        With Worksheets("Data").Range("C1:C65536")
        Set c = .Find("", LookIn:=xlValues)
        If Not c Is Nothing Then
        firstAddress = c.Address
        Do
        c.Select
        Loop While Not c Is Nothing And c.Address <> firstAddress
        End If
        End With
        Start_Point = ActiveCell.Address
        ActiveCell.Select
        ActiveCell.Offset(rowOffset:=-50, columnOffset:=0).Activate
        ActiveCell.Select
    End Sub
    I want to select the last 50 cells in column C
    Please help!
    Thanks.

    Windows("example.xls").Activate
        Worksheets("Data").Select
        With Worksheets("Data").Range("C1:C65536")
        Set c = .Find("", LookIn:=xlValues)
        If Not c Is Nothing Then
        firstAddress = c.Address
        Do
        c.Select
        Loop While Not c Is Nothing And c.Address <> firstAddress
        End If
        End With
        Start_Point = ActiveCell.Address
        ActiveCell.Select
        ActiveCell.Offset(rowOffset:=-50, columnOffset:=0).Activate
        ActiveCell.Select
        ActiveCell.Offset(0).Resize(50).Select
        Selection.Copy

  • Please can you help my Register of names... I want a formula that simply adds numbers in a horizontal row of cells that increase as I add them. Thanks..

    Please can you help my Register of names... I want a formula that simply adds numbers in a horizontal row of cells that increase as I add them. It can not be a range of selected cells  because as I add new cells they are not in the range. Thanks..

    Hi Dave,
    Any formula that references its own row will return the error message you see unless it is in a Header column.
    Convert columns B, C and D to Header Columns, and Jerry's formula will work just fine:
    One caution, though—multiple header columns are a known factor in slowing Numbers down as the table gets larger. You can avoid adding header columns by specifying a 'fixed' range of cells from wich to get the sum and count values in C2 and D2.
    Make sure the range includes at least one 'extra' column. As more runs are added, add columns by inserting them before this 'extra column. If the new columns are inside the range specified in the formula, Numbers will adjust the formula to add the new columns. If they are outside the range, you will need to edit the formulas yourself.
    Note revised formula:
    To add four more runs, click on any cell in column L, then press option-left arrow four times to insert four new columns. Note the change in the formula:
    The last column is always included in the formula, but never gets counted (or summed) because its content is interpreted as a Text value, not a number.
    Note: Except for the change formulas and added columns, this is your original table, with one Header row and one Header column.
    Regards,
    Barry
    Regards,
    barry

  • Alternative to isblank for a range of cells

    Hi,
    I am trying to get a formula using countifs that will return the number of cells containing a checkbox with a "true" value if a related cell on a different row is not blank.
    In my mind this would look somewhat like =countifs(checkbox range, true, isblank(range b), false)
    Is there a function that does what isblank does for a range of cell? Or should I use another function?
    Thanks for the help!

    Hello,
    The above answers seemed alright but they do not get to the heart of the issue that I am having in trying to get summary data on a range of particular cells +determined by a condition+. For this purpose the SUMIFS and COUNTIFS functions are brilliant because you can isolate a range based on conditions; for example, getting rows with a particular string and number.
    I have a long list of newspapers, each with a city, year and rank by population. There are about 10 decades and many different cities (which change as the rankings change), totaling over a thousand rows. The year, rank and city often repeat but the newspapers are all unique.
    It was easy to count the number of newspapers by rank (or city) and year using COUNTIFS but there seems to be no corollary for the MAX (or LARGE) function. I need this because I have circulation numbers and I'd like to know what the MAX circulation is for each city (or rank) in each year.
    This means I need to be able to pluck out a max value for a range of cells based on a calculation. It seems ridiculous to have to put in row numbers in: there should be a simple way to perform a test on a defined range using conditions.
    Hopefully I am simply missing how that is done. Thanks ahead of time,
    Jamil

  • How to make table cell drop down menu from an existing range in cell

    Is this possible?? Checked all over the web & coming up empty. Trying to avoid re-typing in contents from previously created tables in the cell format pop-up menu. Please help.

    I don't think there is an easy way to do this unless Yvan comes up with a script for you.
    One option is to select the range of cells and copy/paste to TextEdit (yes, surprisingly it'll take a range of cells) then from TextEdit you can copy/paste each cell's contents one at a time to the popup menu list. Still a pain but it might be easier than other methods. The workflow I found quickest was to position TextEdit near the Inspector pane (which is open to the Cell inspector with your popup in it) and have the top of the Numbers window nearby. Double click on one cell's contents in TextEdit then Cmd-C to copy, click on the Numbers window up in the toolbar to make Numbers active again without selecting a different cell, then put the contents in the inspector (hit + then paste with Cmd-V). Repeat.
    Message was edited by: Badunit

  • HT3349 How do you select a sub-set of cells from the entire document so you can print only those specific cells?

    How do you select a sub-set of cells from the entire document so you can print only those specific cells?

    There is no analog to MS Excels print range.  So the next best thing is to plan your data so that you don't need to use print range.  The next best thing after that is to select the range of cells you want to print, then copy, the switch to the application Preview, and create a new document from the clipboard (select the menu item "File > New from Clibboard") then select all, copy then paste to the destination (maybe an email) .
    You can also paste that portion of the table into another table (or a new table) by pasting values only

  • In my numbers when I click on a cell it shows the formula but what I want ot see is the number I input inot the cell.  what did I do and how can I change it?

    In Numbers, when I click on a cell I see the formula, how do I see the number I input inot the cell?

    Gerald,
    A cell either contains:
    1) what you typed (or entered) OR
    2) the result of a formula
    to enter a formula, select a cell, then type the "=" sign then the formula, then enter
    to enter a number oer text, then type the number(s) or text you want, then the enter key
    the contents of a cell is the last thing you typed into that cell.  If there was a formula, then selecting the cell and typing will result in losing the formula.
    B3 will change as you modify the cell contents in B1 and B2

  • Creating a pop-down using a range of cells (Like Excel LIST feature)

    Can this be done in numbers. Instead of typing the data into a pop-up list to be pasted in an ongoing long spreadsheet, I was wondering if Numbers supports a similiar feature to Excel's MANAGE LISTS which allows the drop down to be locked to a range of cells instead. I know they are very similar, but wondering?
    -Kevin

    Kevin,
    Presently Drop-Down menu's can't be created from cell ranges in Numbers. It sounds like a good feature, and has been asked about many times here. You can Send Feedback to the Numbers team and tell them what you would like to see in the next version of Numbers. The Feedback link is under the Numbers menu item.
    Jerry

  • How to assign numbers in external number range?

    Dear experts,
    Since NUMBER_GET_NEXT can only be used to assign numbers in internal number range, how to assign numbers in external number range?
    So far, I only know the NUMBER_CHECK function module to deal with external number ranges and it only check a number whether it lies in any external number range or not, but it doesn't update any number range status. What I need is a function module like NUMBER_GET_NEXT that supports external number range.
    Thanks in advance.
    Regards,
    Haris
    Edited by: harissahlan on Oct 19, 2011 5:44 AM

    With external number range, there is no updating of the number range objectt. The only thing you need to know is whether the number you wish to assign is allowed according to the external number range. And also check if there isn't already an object/document with the same number in the database.

  • How to display null values in the graphs, when i select a date range?

    Hi,
    Can you please help me in achieving the below requirement:
    We have a date promt, i have selected the date range from 12-Oct-2009 to 15-Oct-2009 and clicked on the go button.
    In the above date range, data is only availabe on 14-Oct-2009. here the requirement is to display as all the records (12th, 13th , 14th & 15th) in the bar graph.
    Currently the graph view is displaying the data only for 14-Oct-2009 in the bar graph.
    If data is not available it should display in the bar graph as empty for that particular dates.
    Help is highly apprieciated.
    Thanks in Advance.

    Check out [this post|http://obiee101.blogspot.com/2009/04/obiee-showing-zero-in-bargraph.html].

  • Mapping input values for a web service connection to a range of cells

    I've created a web service connection in Xcelsius data manager. My web service requires an array of integer as input parameter. How do I map input values for a web service connection to read from a range of cells in the spreadsheet, e.g. $A$2:$A$20, in similar way of mapping output values to write to a range of cells in the spreadsheet?
    For output values of the web service, I can specify to map the output values to write to a range of cells. However, it doesn't seem to work for reading the input values.
    I can map input values for each node to a single cell, e.g. $A$2, in the spreadsheet. However, when I set the "Read From" field to a range of cells, e.g. $A$2:$A$20, it only reads in the first value in the range.
    Is there any way that we can do this mapping for input values as we do for output values?
    Your assistance is very much appreciated.
    Regards,
    Van

    Van,
    There is a workaround for that...
    Example:
    My Webservice accepts input data range in a specific format with " :" symbol, i.e. 072008:082008
    Now what i do is
    A1 = 072008
    A2 = 082008
    A3 = CONCATENATE(A1,":",A2)
    so A3 = 072008:082008
    Now i map the input value in web service to cell A3
    P.S have 2 input box components and map it to cells A1 and A2, i.e you are giving users an  option to enter the range of values...then web service will capture the range and refreshes data with the range of values user entered.
    hope this helps..
    -Anil

  • How do I select a color range like in Photoshop OR copy/move a layer into the mask of another layer?

    Hi there,
    I'm trialling Photoshop Elements and wanting to use a black and white (grey scale) layer that I've made as a mask in another layer and don't know how to do it in Elements.  In Photoshop, I'd do this (there maybe a better way in PS to do it, but I haven't discovered it yet)...
    Click the layer i've created that I intend to use as a mask
    Select All
    Copy
    select layer that I want the mask to be applied to
    click the Add Layer Mask button (at the bottom of the Layers window)
    click the mask icon so it is highlighted (and the image isn't)
    switch to Channels view
    highlith the Layer Mask beneath the R,G,B layers and make it visible
    Paste
    make it invisible again
    switch back to layers.
    This works and retains the full range of transparency for semi transparency and soft edges of the mask etc.
    Alternatively, I can select a Color Range, but that doesn't seem to be available in PS Elements.
    So, how do I achieve the same result in PS Elements?
    Thanks for your help
    Jonno

    Perfect!   Thanks very much R_Kelly.  That does exactly what I was hoping to do.
    Cheers
    Jonno

Maybe you are looking for

  • Can I get battery percentage on my iPod touch 5?

    I want to know the percentage of my battery can I get that? If I can, how? iPod touch 5 32gb

  • Site created in iWeb not working on iPad.

    I created kind of a test site in iWeb, and then "hosted" it on the web via Opera Unite. The site I created displays correctly over the net on the dektop versions of Opera, Firefox, and Safari, but on my iPad, both Safari and Atomic Web have issues. N

  • Amazon content via Apple TV

    Can you stream Amazon content / movies from an iPad to my tv via Apple TV?  I know it's not a "direct" feed but can I do it via mirroring?

  • FD32 Credit Exposure not updating

    Hi All, I am creating sales order where system is working fine to blocking sales order due to credit limit. But that credit amount is not updating in credit exposure in FD32, instead it is showing 0.00 value. Any clue.................highly appreciat

  • Why app. finger print not available for indonesian...

    yesterday, I download applications from Ovi, Finger print. then when downloading the pro version, I can not because it is not available in Indonesia, please help me to download the pro version of the application for Finger print in Indonesia,, thank