How do I split cells?

Dear friends,
I am having some hard time splitting cells inside table. I used to operate the earlier version of Dreamweaver which was easy to work, but having an hard time with CC.
While trying to split cells the options is not highlighting, can someone help me with this...

Hello Hyder GD,
possibly even an alternative to Ben's "Split Cell" - what is working in my (German) DW could be "Insert Rows or Columns..."
A window opens (sorry it's German):
where you can choose "Zeilen oder Spalten einfügen" (something like "Insert Rows or Columns"), in your case "Anzahl der Spalten" ("Number of columns") and "Wo" (Where) "Vor/nach aktueller Spalte" ("Before/After current column").
Good luck!
Hans-Günter

Similar Messages

  • How do I split cells in Numbers 3.2?

    How do I split cells in Numbers 3.2?

    Hey big one,
    I don't believe you can split cells in Numbers 3.2. It has not been not considered a good practice because it can lead to trouble down the line. This is true about merging also. I used to do a lot of that in '09. What I have found that I can generally get the looks I am after (getting text to span multiple columns for instance) by turning off "wrap text in cell" and playing with the justification.
    Hope this is in some way helpful.
    quinn

  • Printing Sheets? How do you split cells?

    Hello
    I'm trying to print a sheet which is about 10 pages long.
    The cells are filled with large amounts of text and i'm trying to figure out how to print the cells so they continue from page to page by splitting them in their print format rather than having half an empty page and starting a fresh cell on the next page?
    Does this make sense and if so, can anyone help?
    Thanks
    Sib

    sib81 wrote:
    Hello
    I'm trying to print a sheet which is about 10 pages long.
    The cells are filled with large amounts of text and i'm trying to figure out how to print the cells so they continue from page to page by splitting them in their print format rather than having half an empty page and starting a fresh cell on the next page?
    Does this make sense and if so, can anyone help?
    There is a simple workaround : split your huge pieces of text by yourself.
    If you want, I may write a script doing that.
    Yvan KOENIG (VALLAURIS, France) jeudi 7 avril 2011 13:35:26

  • How can I split cells in Numbers 3.0.1

    I cannot find the cell split option on the latest version on Numbers - can anyone point me in the right direction - thank you

    Hi Nick,
    Got it. The purer "spreadsheet way" to avoid duplication of data would be to record commissions in a separate table, and extract the sums corresponding to each "heading" with a formula, something like this:
    The formula in D2, copy pasted down,  is:
             =SUMIF(Commissions::$A,$A2,Commissions::$C)
    This says, add up everything in column C of the Commissions table where the value in column A of the Commissions table is the same as the value in column A of this row.
    This takes a one-time setup (and you have to make sure the values in column A of both tables are consistent) but thereafter there are advantages.  Among them, you can sort and filter your transactions or your commissions to get different views.
    Splitting and merging cells in spreadsheets generally spells trouble, even in Numbers 2.3, though it sounds as if you've been lucky.
    SG

  • How to outline selected cells during drag and drop in the jtable

    Hi,
    I have spent a lot of time to find out how to outline selected cells during drag in the jtable, but I did not find the answer.
    Can anybody give me a tip, where to read more about this problem or even better, give an example...
    I have the following situation:
    1.Table has 10 rows and 10 columns
    2.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION) and setCellSelectionEnabled(true)
    3.user select 5 cells in 4th row (for example cell45,cell46,cell47,cell48 and cell49)
    4.user starts dragging. During dragging an outline should be drawn. Outline should be a rectangular with width of 5 cells and height of one cell. Outline should move according to the mouse position.
    5.rectangular disappears when dropped
    Regards,
    Primoz

    In "createTransferable" you can create a drag image
    which you can paint in "dragOver" and clear in "drop" method of DropTarget :
    package dnd;
    * DragDropJTableCellContents.java
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.table.*;
    import java.awt.*;
    import java.awt.datatransfer.*;
    import java.awt.dnd.*;
    import java.awt.event.*;
    import java.awt.image.BufferedImage;
    import java.io.IOException;
    public class DragDropJTableCellContents extends JFrame {
        public DragDropJTableCellContents() {
            setTitle("Drag and Drop JTable");
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            getContentPane().add(createTable("JTable"), BorderLayout.CENTER);
            setSize(400, 300);
            setLocationRelativeTo(null);
        private JPanel createTable(String tableId) {
            DefaultTableModel model = new DefaultTableModel();
            for (int i = 0; i < 10; i++) {
                model.addColumn("Column "+i);
            for (int i = 0; i < 10; i++) {
                String[] rowData = new String[10];
                for (int j = 0; j < 10; j++) {
                    rowData[j] = tableId + " " + i + j;
                model.addRow(rowData);
            JTable table = new JTable(model);
            table.getTableHeader().setReorderingAllowed(false);
            table.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
            table.setCellSelectionEnabled(true);
            JScrollPane scrollPane = new JScrollPane(table);
            table.setDragEnabled(true);
            TableTransferHandler th = new TableTransferHandler();
            table.setTransferHandler(th);
            table.setDropTarget(new TableDropTarget(th));
            table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
            JPanel panel = new JPanel(new BorderLayout());
            panel.add(scrollPane);
            panel.setBorder(BorderFactory.createTitledBorder(tableId));
            return panel;
        public static void main(String[] args) {
            new DragDropJTableCellContents().setVisible(true);
        abstract class StringTransferHandler extends TransferHandler {
            public int dropAction;
            protected abstract String exportString(JComponent c);
            protected abstract void importString(JComponent c, String str);
            @Override
            protected Transferable createTransferable(JComponent c) {
                return new StringSelection(exportString(c));
            @Override
            public int getSourceActions(JComponent c) {
                return COPY;
            @Override
            public boolean importData(JComponent c, Transferable t) {
                if (canImport(c, t.getTransferDataFlavors())) {
                    try {
                        String str = (String) t.getTransferData(DataFlavor.stringFlavor);
                        importString(c, str);
                        return true;
                    } catch (UnsupportedFlavorException ufe) {
                    } catch (IOException ioe) {
                return false;
            @Override
            public boolean canImport(JComponent c, DataFlavor[] flavors) {
                for (int ndx = 0; ndx < flavors.length; ndx++) {
                    if (DataFlavor.stringFlavor.equals(flavors[ndx])) {
                        return true;
                return false;
        class TableTransferHandler extends StringTransferHandler {
            private int dragRow;
            private int[] dragColumns;
            private BufferedImage[] image;
            private int row;
            private int[] columns;
            public JTable target;
            @Override
            protected Transferable createTransferable(JComponent c) {
                JTable table = (JTable) c;
                dragRow = table.getSelectedRow();
                dragColumns = table.getSelectedColumns();
                createDragImage(table);
                return new StringSelection(exportString(c));
            protected String exportString(JComponent c) {
                JTable table = (JTable) c;
                row = table.getSelectedRow();
                columns = table.getSelectedColumns();
                StringBuffer buff = new StringBuffer();
                for (int j = 0; j < columns.length; j++) {
                    Object val = table.getValueAt(row, columns[j]);
                    buff.append(val == null ? "" : val.toString());
                    if (j != columns.length - 1) {
                        buff.append(",");
                return buff.toString();
            protected void importString(JComponent c, String str) {
                target = (JTable) c;
                DefaultTableModel model = (DefaultTableModel) target.getModel();
                String[] values = str.split("\n");
                int colCount = target.getSelectedColumn();
                int max = target.getColumnCount();
                for (int ndx = 0; ndx < values.length; ndx++) {
                    String[] data = values[ndx].split(",");
                    for (int i = 0; i < data.length; i++) {
                        String string = data;
    if(colCount < max){
    model.setValueAt(string, target.getSelectedRow(), colCount);
    colCount++;
    public BufferedImage[] getDragImage() {
    return image;
    private void createDragImage(JTable table) {
    if (dragColumns != null) {
    try {
    image = new BufferedImage[dragColumns.length];
    for (int i = 0; i < dragColumns.length; i++) {
    Rectangle cellBounds = table.getCellRect(dragRow, i, true);
    TableCellRenderer r = table.getCellRenderer(dragRow, i);
    DefaultTableModel m = (DefaultTableModel) table.getModel();
    JComponent lbl = (JComponent) r.getTableCellRendererComponent(table,
    table.getValueAt(dragRow, dragColumns[i]), false, false, dragRow, i);
    lbl.setBounds(cellBounds);
    BufferedImage img = new BufferedImage(lbl.getWidth(), lbl.getHeight(),
    BufferedImage.TYPE_INT_ARGB_PRE);
    Graphics2D graphics = img.createGraphics();
    graphics.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 1f));
    lbl.setBorder(BorderFactory.createLineBorder(Color.LIGHT_GRAY));
    lbl.paint(graphics);
    graphics.dispose();
    image[i] = img;
    } catch (RuntimeException re) {
    class TableDropTarget extends DropTarget {
    private Insets autoscrollInsets = new Insets(20, 20, 20, 20);
    private Rectangle rect2D = new Rectangle();
    private TableTransferHandler handler;
    public TableDropTarget(TableTransferHandler h) {
    super();
    this.handler = h;
    @Override
    public void dragOver(DropTargetDragEvent dtde) {
    handler.dropAction = dtde.getDropAction();
    JTable table = (JTable) dtde.getDropTargetContext().getComponent();
    Point location = dtde.getLocation();
    int row = table.rowAtPoint(location);
    int column = table.columnAtPoint(location);
    table.changeSelection(row, column, false, false);
    paintImage(table, location);
    autoscroll(table, location);
    super.dragOver(dtde);
    public void dragExit(DropTargetDragEvent dtde) {
    clearImage((JTable) dtde.getDropTargetContext().getComponent());
    super.dragExit(dtde);
    @Override
    public void drop(DropTargetDropEvent dtde) {
    Transferable data = dtde.getTransferable();
    JTable table = (JTable) dtde.getDropTargetContext().getComponent();
    clearImage(table);
    handler.importData(table, data);
    super.drop(dtde);
    private final void paintImage(JTable table, Point location) {
    Point pt = new Point(location);
    BufferedImage[] image = handler.getDragImage();
    if (image != null) {
    table.paintImmediately(rect2D.getBounds());
    rect2D.setLocation(pt.x - 15, pt.y - 15);
    int wRect2D = 0;
    int hRect2D = 0;
    for (int i = 0; i < image.length; i++) {
    table.getGraphics().drawImage(image[i], pt.x - 15, pt.y - 15, table);
    pt.x += image[i].getWidth();
    if (hRect2D < image[i].getHeight()) {
    hRect2D = image[i].getHeight();
    wRect2D += image[i].getWidth();
    rect2D.setSize(wRect2D, hRect2D);
    private final void clearImage(JTable table) {
    table.paintImmediately(rect2D.getBounds());
    private Insets getAutoscrollInsets() {
    return autoscrollInsets;
    private void autoscroll(JTable table, Point cursorLocation) {
    Insets insets = getAutoscrollInsets();
    Rectangle outer = table.getVisibleRect();
    Rectangle inner = new Rectangle(outer.x + insets.left,
    outer.y + insets.top,
    outer.width - (insets.left + insets.right),
    outer.height - (insets.top + insets.bottom));
    if (!inner.contains(cursorLocation)) {
    Rectangle scrollRect = new Rectangle(cursorLocation.x - insets.left,
    cursorLocation.y - insets.top,
    insets.left + insets.right,
    insets.top + insets.bottom);
    table.scrollRectToVisible(scrollRect);
    Edited by: Andre_Uhres on Nov 18, 2007 10:03 PM

  • Using numbers 2.3 how do i split windows to view more than 1 spreadsheet at a time?

    using numbers 2.3 how do i split windows to view more than 1 spreadsheet at a time?

    Hi seth,
    Numbers vocabulary:
    Spreadsheets (aka: Document)
    contain one or more Sheets
    on each of which may be placed one or more Tables
    each of which contains one or more cells
    each of which may contain either data or a formula.
    Spreadsheets open in separate windows. Depending on the contents of each spreadsheet, and the scale at which you want to see it (and the size of your display), you can view more than one spreadsheet in the same manner as you can view more than one of any kind of document—open two documents in separate windows. Resize the windows to allow both to be viewed at the same time. Place and scale the individual documents to permit viewing the desired part of each
    Sheets within the same document cannot be displayed simultaneously. You can make and open a copy of the document, then open and view both copies as described above, but this introduces new opportunities to edit the wrong copy. You could Copy a Table from one part of the document, open Preview and go File > New from Clipboard to create a PDF copy of that table (readable, but not editable), and view the spreadsheet and pdf documents as described above.
    Tables can be rearranged, or have rows or columns (or both) hidden to permit simultaneous viewing of selected parts of both.
    A Table can have Table > Freeze Header Rows and Table > Freeze Header Columns set to keep these rows/columns visible as the rest of the table is scrolled. Or can have a range of rows (or columns) hidden to allow viewing of rows (columns) adjacent to that range visible on the same screen.
    Numbers does not support freezing of rows or columns other than Header rows and Header Columns.
    Regards,
    Barry

  • How can I split these numbers 05/24/2014,"55","15","49","16","28","18","2", pnto different columns?

    How can I split these numbers 05/24/2014,"55","15","49","16","28","18","2", pnto different columns?

    replace:
    with a tab
    copy the text:
    05/24/2014,"55","15","49","16","28","18","2"
    into a text box, then replace the "," with a single tab and replace the ," with a tab, then replace ", with a tab
    then copy, then select a cell, then paste
    05/24/2014,"55","15","49","16","28","18","2"
    ends up looking like:
    05/24/2014     55     15     49     16     28     18     2   (do NOT copy and paste from here... the forum replaces the tabs with spaces... so it won't work)
    when you copy and paste into a table in Numbers it looks like:

  • How do I use cell number associated with iPad 2 3G

    How do I use cell number associated with iPad 2 3G

    For Messages you can can use your email address, the iPad doesn't have a phone number that you can use.

  • How do we split our iCloud accounts but keep one iTunes account so we can share purchased content for our multiple iPhones and iPads?

    How do we split our iCloud accounts but keep one iTunes account so we can share purchased content for our multiple iPhones and iPads?

    You can migrate a copy of the data to a new account, then delete the other person's data from each account.  To do this, on the phone that will be changing accounts, if you have any photos in photo stream that you want to keep on the phone, save these to your camera roll by opening the photo stream album in the thumbnail view, tapping Edit, then tap all the photos you want to save, tap Share and tap Save to Camera Roll. If you have any synced notes that you want to keep on the phone, email these to yourself so you can create new notes in the new account.
    Once this is done, go to Settings>iCloud, scroll to the bottom and tap Delete Account.  (This will only delete the account from this phone, not from iCloud.  The phone that will be keeping the account will not be effected by this.)  When prompted about what to do with the iCloud data, be sure to select Keep On My iPhone.  Next, set up a new iCloud account using a different Apple ID (if you don't have one, tap Get a Free Apple ID at the bottom).  Then turn iCloud data syncing for contacts, etc. back to On, and when prompted about merging with iCloud, choose Merge.  This will upload the data to the new account.  You will create a new icloud email address with you turn Mail to On.
    Finally, to un-merge the data you will then have to go to icloud.com on your computer and sign into each iCloud account separately and manually delete the data you don't want (such as deleting your wife's data from your account, and vice versa).

  • How to print selected cells in numbers

    Does anyone know how to print selected cells in a Numbers spreadsheet, rather than printing the entire sheet?
    Also, how to save the selected cells as a pdf file without saving the irrelevant cells?

    Hi nmygs,
    How about this?
    Cell A1 is a Pop-Up Menu containing names of the various "Departments"
    Other cells contain formulas to find a match for whatever is chosen in A1 from the Very Big Data Table.
    Reusable Print Me table.
    Regards,
    Ian.

  • How can I split the video port of an older Mac Mini so I can use both the 922-6199 DVI to RCA, S-Video Adapter and a Cinema Display?

    How can I split the video port of an older Mac Mini so I can use both the 922-6199 DVI to RCA, S-Video Adapter and a Cinema Display?

    Which exact Mini?
    At the Apple Icon at top left>About this Mac.
    Then click on More Info>Hardware and report this upto but not including the Serial#...
    Hardware Overview:
    Model Name: iMac
    Model Identifier: iMac7,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 6 GB
    Bus Speed: 800 MHz
    Boot ROM Version: IM71.007A.B03
    SMC Version (system): 1.21f4

  • How do you split the print job across multiple printers to shorten the prin

    i
    Can any one you provide some information on below questions.
    Check printing by XML template (XML Publisher).
    1. When printing checks, how do you print the checks from one printer tray and the overflow remittance pages from another printer tray?
    2. When printing a large batch of checks using XML and PDF output, how do you split the print job across multiple printers to shorten the print time?
    I appreciate if you could give some information on above 2 questions.
    Regards,
    Ramarao.

    Probably sould just do them individually.
    How to get all the iWork apps, iPhoto, and iMovie for free on an eligible iPhone or iPad
    http://www.imore.com/how-get-all-iwork-apps-iphoto-and-imovie-free-eligible-ipho ne-or-ipad
    About Free Apple Apps for iOS 7 compatible devices
    http://support.apple.com/kb/HT5913
     Cheers, Tom

  • I have multiple users on one account and now want to split the account.  How do you split and account?

    My family and I have used the same account for many years.  We are now looking to create individual accounts and separating the music and other items appropriately.  How do you split an account?

    It's not currently possible to split an account, all content will remain tied to the account that originally bought/downloaded it. You can try leaving feedback for Apple, and maybe at some point it will be possible : http://www.apple.com/feedback/

  • I have 2 Ipads (ipad2 and Ipad3) and 2 Iphones (4 and 4s) all under 1 account in itunes.  How would I split these into 2 accounts and still be able to share itunes music?

    I have 2 Ipads (Ipad2 and Ipad3) and 2 Iphones (4 and 4S) that are currently  sharing 1 username for itunes.  How can I split 1 ipad and 1 iphone to another username and still use my music library in itunes?

    Sign out of the iTunes, store, iMessage, and iCloud on the devices, then sign in with the account you want.
    This simply changes the account the device is pulling content from.
    Content can not be moved from one account to another.  Content is permanently tied to the account it was acquired with.
    What are you really trying to accomplish?

  • I have a DAQ Assistant configured to read multiple channels at the same time. When I wire a graph indicator to the output, I see all of my signals jumbled together. How do I split them up into seperate signals?

    I have a DAQ Assistant configured to read 2 channels at the same
    time. When I wire a graph indicator to the output, I see the 2
    signals jumbled together. How do I split them up into seperate signals?
    When I wire any type of indicator it is showing just one output of a single channel.
    I want 2 indicators showing 2 different signals as expected from the 2 channels configured. How to do this?
    I have tried using split signal but it end up showing only 1 output from 1 signal in both the indicators.
    thanks in advance.
    Solved!
    Go to Solution.

    Yes you are right. I tried that but I did not get the result.
    I just found the way. When we launch split signal, we should expand it (split signal icon) from above and not from below. It took me a while to figure out this. 
    thanks 

Maybe you are looking for

  • "You do not have sufficient access to uninstall" following CF9 silent install

    When running a silent CF9 install I'm unable to remove the product, either through control panel or running the uninstaller directly.  The error is "You do not have sufficient access to uninstall Adobe Coldfusion 9.  Please contact your system admini

  • Image Problem in Reports 10g

    Hi Gurus, I am using an Boilerplate in the Reports 10g. In the Property Inspection I am passing Source File Format : Image Source FileName : &P_IMG_LOCATION Where &P_IMG_LOCATION is the dynamic location which is fetched from the database For Eg . &P_

  • What hard drive will work in my on a h81420t

    what are the harddrives that works in my h81420t

  • Blank Screen and sound

    Today My Iphone Had Suddenly Turned Blank I Am Receiving A call but i cant hear any sound and the display went blank what is the reason for this ??I Updated My Phone To Ios 5 The Day Before Today I'm experiancing this problem Any Body Pls Help Me...

  • ASA Stops sending OSPF hellos

    ASA Stops sending OSPF hellos Dear Support, Wondering if anyone else has come across this problem, but have two Cisco ASA 5510s ASA V7.2(1), DM V5.2(1) (in active/passive failover configuration). These are connected to a pair of 3750G-48-EMIs in a st