How do i select multiple cells in numbers or iPad?

Hello,
can you help me? I do not find out how to select multiple cells in a table that do not stand next to each other.
For example, I want to select cells A1, A3, A9 and so on. Afterwards I want to change the colour.
Do you have an idea? Perhaps it's quite simple but I don't find the solution
Sorry, I'm no native english speaker. I hope you'll understand what I am looking for.

HI Ritscho
I do not beleive this is possible, I can see other threads here from 2 years ago asking the same thing and none of them have answers.
You can selesct a range of adjacent cells as Eric said, but not 2 different ranges. I usually use numbers on the iPad for filling in template spreadsheets that I create on my Mac. Most of the formatting I do on the Mac then fill in the blanks whilst i'm out and about.
Not the answer you were looking for but hope it helps.

Similar Messages

  • How do I add multiple rows in Numbers for iPad?

    how do I add multiple rows in Numbers for iPad?

    Hi James,
    On the iPod I can only insert what is on the clipboard but I can insert however many rows I have there. Is it working differently for you? Benjoon seemed to think that he could not do this in Numbers. He was ruling Numbers out because of it. He doesn't need to do that because of this issue.
    If I was needing to insert multiple blank rows often I might keep a table of blank rows or just some blank rows at the end of the working table that I could copy/paste. This is no different than Numbers on the Mac.
    quinn

  • How can I select multiple cells in tableview with javafx only by mouse?

    I have an application with a tableview in javafx and i want to select multiple cells only by mouse (something like the selection which exists in excel).I tried with setOnMouseDragged but i cant'n do something because the selection returns only the cell from where the selection started.Can someone help me?

    For mouse drag events to propagate to nodes other than the node in which the drag initiated, you need to activate a "full press-drag-release gesture" by calling startFullDrag(...) on the initial node. (See the Javadocs for MouseEvent and MouseDragEvent for details.) Then you can register for MouseDragEvents on the table cells in order to receive and process those events.
    Here's a simple example: the UI is not supposed to be ideal but it will give you the idea.
    import java.util.Arrays;
    import javafx.application.Application;
    import javafx.beans.property.SimpleStringProperty;
    import javafx.collections.FXCollections;
    import javafx.collections.ObservableList;
    import javafx.event.EventHandler;
    import javafx.geometry.Insets;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.SelectionMode;
    import javafx.scene.control.TableCell;
    import javafx.scene.control.TableColumn;
    import javafx.scene.control.TableView;
    import javafx.scene.control.cell.PropertyValueFactory;
    import javafx.scene.input.MouseDragEvent;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.VBox;
    import javafx.scene.text.Font;
    import javafx.stage.Stage;
    import javafx.util.Callback;
    public class DragSelectionTable extends Application {
        private TableView<Person> table = new TableView<Person>();
        private final ObservableList<Person> data =
            FXCollections.observableArrayList(
                new Person("Jacob", "Smith", "[email protected]"),
                new Person("Isabella", "Johnson", "[email protected]"),
                new Person("Ethan", "Williams", "[email protected]"),
                new Person("Emma", "Jones", "[email protected]"),
                new Person("Michael", "Brown", "[email protected]")
        public static void main(String[] args) {
            launch(args);
        @Override
        public void start(Stage stage) {
            Scene scene = new Scene(new Group());
            stage.setTitle("Table View Sample");
            stage.setWidth(450);
            stage.setHeight(500);
            final Label label = new Label("Address Book");
            label.setFont(new Font("Arial", 20));
            table.setEditable(true);
            TableColumn<Person, String> firstNameCol = new TableColumn<>("First Name");
            firstNameCol.setMinWidth(100);
            firstNameCol.setCellValueFactory(
                    new PropertyValueFactory<Person, String>("firstName"));
            TableColumn<Person, String> lastNameCol = new TableColumn<>("Last Name");
            lastNameCol.setMinWidth(100);
            lastNameCol.setCellValueFactory(
                    new PropertyValueFactory<Person, String>("lastName"));
            TableColumn<Person, String> emailCol = new TableColumn<>("Email");
            emailCol.setMinWidth(200);
            emailCol.setCellValueFactory(
                    new PropertyValueFactory<Person, String>("email"));
            final Callback<TableColumn<Person, String>, TableCell<Person, String>> cellFactory = new DragSelectionCellFactory();
            firstNameCol.setCellFactory(cellFactory);
            lastNameCol.setCellFactory(cellFactory);
            emailCol.setCellFactory(cellFactory);
            table.setItems(data);
            table.getColumns().addAll(Arrays.asList(firstNameCol, lastNameCol, emailCol));
            table.getSelectionModel().setCellSelectionEnabled(true);
            table.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
            final VBox vbox = new VBox();
            vbox.setSpacing(5);
            vbox.setPadding(new Insets(10, 0, 0, 10));
            vbox.getChildren().addAll(label, table);
            ((Group) scene.getRoot()).getChildren().addAll(vbox);
            stage.setScene(scene);
            stage.show();
        public static class DragSelectionCell extends TableCell<Person, String> {
            public DragSelectionCell() {
                setOnDragDetected(new EventHandler<MouseEvent>() {
                    @Override
                    public void handle(MouseEvent event) {
                        startFullDrag();
                        getTableColumn().getTableView().getSelectionModel().select(getIndex(), getTableColumn());
                setOnMouseDragEntered(new EventHandler<MouseDragEvent>() {
                    @Override
                    public void handle(MouseDragEvent event) {
                        getTableColumn().getTableView().getSelectionModel().select(getIndex(), getTableColumn());
            @Override
            public void updateItem(String item, boolean empty) {
                super.updateItem(item, empty);
                if (empty) {
                    setText(null);
                } else {
                    setText(item);
        public static class DragSelectionCellFactory implements Callback<TableColumn<Person, String>, TableCell<Person, String>> {
            @Override
            public TableCell<Person, String> call(final TableColumn<Person, String> col) {         
                return new DragSelectionCell();
        public static class Person {
            private final SimpleStringProperty firstName;
            private final SimpleStringProperty lastName;
            private final SimpleStringProperty email;
            private Person(String fName, String lName, String email) {
                this.firstName = new SimpleStringProperty(fName);
                this.lastName = new SimpleStringProperty(lName);
                this.email = new SimpleStringProperty(email);
            public String getFirstName() {
                return firstName.get();
            public void setFirstName(String fName) {
                firstName.set(fName);
            public String getLastName() {
                return lastName.get();
            public void setLastName(String fName) {
                lastName.set(fName);
            public String getEmail() {
                return email.get();
            public void setEmail(String fName) {
                email.set(fName);

  • How do you lock individule cells in numbers on ipad

    how do you lock individule cells in numbers on ipad

    Wayne, are you sure its iOS numbers that can lock the table? If so, could you please show me how? Havent figured it out yet.
    Thanks
    Jason

  • How do i select multiple cells in dreamweaver cc?

    Can't get cursor to appear to break and merge table cells. Keeps moving entire cell.
    Thanks,
    winifred

    in past version of dreamweaver I could see the cells and borders in design view and easily select multiples with a cursor. Just updated to CC and now only see blue boxes, arrow.
    Any thoughts on how to get a normal table view where I can select back.
    Any help is appreciated.
    winifred

  • How do I select multiple sheets in Numbers

    I have  a numbers file established with numerous sheets and I want to select multiple sheets, cut and paste them to a new file to help organize my data.

    Hi Beast,
    You might find it easier to duplicate the whole doc and delete the sheets you don't want. Otherwise you are copying and pasting tables from each sheet.
    quinn

  • Pasting multiple cells in Numbers.

    I have been searching all day to figure out how to copy cells from several rows and paste them but have the cells now adjacent to one another. This is possible in Excel (it does it automatically). For example, I have numbers in A1, A11, A21 and I would like to copy those 3 numbers (as they are the result of formulas) and then paste them but instead of having 10 empty rows between the numbers (which is what Numbers does) I would like the 3 values to be adjacent in the same column (eg, in B1,B2,B3). I can select the multiple cells I want to copy by holding the command key, but when I paste it keeps the same "format" as the original cells (i.e. separated by 10 rows). I'm using Numbers '09 Version 2.2, on a MacBook Pro running OSX 10.8.1.
    Any help is greatly appreciated!
    Best,
    K

    Hi Wayne,
    It is a lovely feature of MS Excel that you can copy non contiguous cells and upon paste they become contiguous.
    As for "bigger picture" - I have a large table for analyzing quantitative PCR data...it consists of several rows and columns with formulas for various calculations. What I am analyzing is the expression levels of a number of genes in several samples (for example, 5 genes and I look at the expression of those 5 genes in 4 samples). The "end point" is calculating the RQ value for each gene in each sample, and I then graph the RQ values. Where the non-contiguous to contiguous paste is necessary is that the RQ values are spread out along the rows and columns (the cells in between contain the raw data and other formulas). What I was previously doing was selecting multiple cells within the row that had the RQ values, copying, and then upon paste they would be contiguous. This makes copying and pasting all of the data for constructing the graph very efficient. I have recently switiched to Numbers and am prefering it to Excel...with the exception of this one feature. Yes, copying and pasting one item at a time is possible, but time consuming and error prone compared to the method I was using in Excel. Hopefully this explanation helps in finding a solution.
    Best,
    K

  • After updating numbers and pages I can no longer copy multiple cells from numbers and paste and match style to pages.

    After updating numbers and pages I can no longer copy multiple cells from numbers and paste and match style to pages.  I used to be able to select multipule cells in a row (such as company name, address, etc.) then paste and match style on to a pages letter. I found the paste and match style option in the edit menu, however it will only work one cell at a time. Before the update is was working great.

    For diagnosing purpose thy the procedure in a new user account and see if it works there. You create a new user account in the System Preferences > Accounts. If it works in the new account it is probably a corrupt plist file that needs to be deleted.

  • How to print a specific cell in numbers

    how to print a specific cell in numbers?

    Copy the cell (contents), Paste onto a page of a separate document, or onto a separate sheet of your Numbers document, Print.
    Or insert a single cell table onto your Numbers document, type an = sign in the cell then click on the cell you want to print. Drag the new table to a second sheet, set up your page there, and print.
    See the Numbers '09 User Guide for other useful tools and techniques. Download the guide via the Help menu in Nuimbers.
    Regards,
    Barry

  • How do you select multiple files to drag

    How do you select multiple files to drag from one folder to another? Is there a command?

    Open the folder which has the contents you want to transfer.  Press COMMAND 'A' and then all of the data should be highlited in blue.  Drag it to the new folder.
    If only certain files are to be transferred, then you have to select them (COMMAND 'A')  individually and the drag them as a group to the new location.
    Ciao.

  • How do you select multiple messages/conversations on SMS/MMS to forward or save to memory card on Samsung Stratosphere?

    How do you select multiple messages/conversations on SMS/MMS to forward or save to memory card on Samsung Stratosphere? 
    My screen is cracked and I need to replace my phone and I don't see a way of selecting multiple messages or even conversations one at a time to forward them to email or to save them to a memory card.  I can delete thread but can't forward it or move it.  Is there a setting somewhere that will move the storage location for messages to the memory card instead of internal?
    If not, any suggestions on backup apps?  I have heard of Txtract to back up SMS and MMS messages, and Titanium Backup to back up everything (SMS, MMS, apps, app data...).  Anyone have any experience with those, or other suggestions?
    Thanks!
    Rich

    <Duplicate topic.  This thread will be locked.  Please see Help transferring data (SMS, MMS, Apps, App data) to new phone? for any replies.>

  • How do you select multiple songs in itunes to delete

    how do you select multiple songs to delete at once in itunes?

    Try highlighting the first one yhen command click on the others you wish to delete, when you have the ones selected hit delete.

  • How do you select multiple files at one time

    How do you select multiple files at one time

    Select one, and then either command-click another, or in list/column view, Shift-click the item at the other end of the range you want to select. Alternatively, click on a spot in the screen and drag the cursor until all the files are selected.
    (114308)

  • How do I select Multiple Pdfs at one time when I am combining files?

    How do I select Multiple Pdfs at one time when I am combining files?
    I can only select one pdf at a time.

    Hi,
    Please use either Firefox or Chrome to selelct multiple files.
    Thank you.
    Hisami

  • How can I select multiple photos of files without selecting each individual one

    How can I select multiple files or photos without having to select each individual one? Like you can do on Windows

    Op: without tapping on each one individually
    tap all the photos you want to delete.
    Note what the OP is asking.

Maybe you are looking for

  • Pdf's wont open in browser

    For some reason I can not get the pdf reader 9.1x to open pdf files in my firefox or IE. Any thoughts? I reinstalled both the reader and the browser. Stumpy

  • Replacing g4 superdrive

    Superdrive on g4 quit. Needs to be replaced says repairguy. Can I do this myself? Any instructions anywhere? Any particular drive to purchase? I know how to use them, but other than expanding RAM, I've never worked on a computer.

  • QuickTime 10 wont open/respond

    My QT will not respond, I don't have the sligest clue as to what happend.  I am curently using the latest software update Mac OS X Lion 10.7.4 . Have anyone out there have this type of issue? If so could you be kind to tell ma how you fix it?  Thanks

  • Internal error ORA-3135 and huge udump

    I don't know if this should be addressed here in this forum rather then metalink, but anyway I will try. I get an internal error and a huge udump trace-file (2 Gb), the situation is that I created a view with a reference to a package function in the

  • Dynamic editable functionality in Adobe form

    Hi All, I am Calling a Interactive Adobe form from webdynpro view. second applicant(SBPID)--Read only               second applicant name(SNAME)-Calculated read only I have created Action on second applicant ID (SBPID) ---If SBPID is not empty disabl