Add more than one row at a time

How do I add multiple rows in one step? I periodically d/l a small sheet of data and paste it into a master sheet. I have to add enough rows between the data and the summary row one at a time. Is there a quicker way?
Geoff

Geoff,
Let's say that you want to add 5 rows. Select the 5 rows just above where you want to add 5 more and select Table > Add Rows Below. A number of rows equal to the number you have selected will be added.
Jerry

Similar Messages

  • Unable to add more than one album at a time

    So I have had minimal issues with my ipod classic until about a week ago, when suddenly all 45gb of music on my ipod was erased. I didn't do anything stupid like disconnect it when it wasn't ready to be disconnected. So I restored my ipod and then began adding music on to it. The only problem is that if I try and add more than one album at a time, it freezes at some point and some error message pops up (there are a few differnt ones). After that happens practically nothing can be added to my ipod. Any solutions?

    Yes, I was able to add as many albums as I wanted before the crash and I have restored it three or four times since then because of this problem.

  • Is it possible to add more than one page at a time in pages - word processing?

    Is it possible to add more than one page at a time in pages - word processing?

    I haven't been able to find a way to add more than one page at a time.  I think you'll have to add them one at a time. 

  • How do i add more than one pdf at a time to profile manager books

    How do I add more than one pdf at a time to profile manager books? When I browse to my pdf folder I can only select one pdf at a time. I have 500+ pdf files I need to add. Any help would be greatly appreciated.

    Bucknut wrote:
    I want to add more than one email address to my address book from an email I received. They were in the CC of the email I received. is there anyway to drag them all into an address book group all at once. I hate having to add and address and then having to find the address and then add it to a group. thanks
    no, there is no way to do that, sorry. you need to control-click on every email address one at a time and select "add to address book". if an email is in the address book already that option will not be there.

  • Help. how do I add more than one address at a time?

    I want to add more than one email address to my address book from an email I received. They were in the CC of the email I received. is there anyway to drag them all into an address book group all at once. I hate having to add and address and then having to find the address and then add it to a group. thanks

    Bucknut wrote:
    I want to add more than one email address to my address book from an email I received. They were in the CC of the email I received. is there anyway to drag them all into an address book group all at once. I hate having to add and address and then having to find the address and then add it to a group. thanks
    no, there is no way to do that, sorry. you need to control-click on every email address one at a time and select "add to address book". if an email is in the address book already that option will not be there.

  • ITunes 7 won't add more than one file at a time

    Hello everyone. I have a weird problem with iTunes 7.0.2. Every time I try to add multiple files to the iTunes library using the Add File To Library feature, it doesn't do anything. Adding one file at a time is possible, but tedious. Adding multiple files from a folder (using Add Folder To Library) does work, but shouldn't be necessary. I haven't had this problem with iTunes 7.0.2 on the Mac, and didn't have this issue with iTunes 6.0.5 and before on Windows. Any idea what the problem might be? Thanks in advance.
    -Adam

    Maybe I misunderstood your post, but this sounds like a suggestion rather than a problem.
    You can provide iTunes feedback here:
    http://www.apple.com/feedback/itunesapp.html
    If your post was a question, post back and I'll see if I can help.
    I hope this solves your problem!

  • JRMC Profiler - Any way to add more than one class at a time?

    Are there any package wildcards or import functions to allow adding multiple classes into the Method Profiler without typing them one class at a time?
    Thanks,
    -Bill

    Hi Bill,
    No, currently not. We're considering investing resources into making both the API and user interface of the method profiler in the Management Console more powerful. If you have time, answering the following two questions would be of great help to us!
    1. For what are you using the profiler in the Managment Console?
    2. Why isn't the information you get from a JRA/JFR recording sufficient for your use case?
    Kind regards,
    Marcus

  • How to add more than one rows to form, without submitting to database

    Hi!
    I have an updatable report similar to this http://htmldb.oracle.com/pls/otn/f?p=31517:163:3149788972931514::NO
    Now, as much as I'm aware the standard thing is that when I add a row, put in data and then add a nother row, previous data is commited and another row is added.
    I, on the other hand, would like to add as much rows as I need and populate them with data and then submitt all the changes in the end. So the user nows, that when he SAVES data it's submited to db, not in between.
    My form is not standard, it uses SQL, and APEX_ITEM, I even have more updatable reports on one page etc, so I presume, processes like AddRowToTabularForm don't come handy.
    Thanx for any suggestions,
    N.

    user10824271 wrote:
    I, on the other hand, would like to add as much rows as I need and populate them with data and then submitt all the changes in the end. So the user nows, that when he SAVES data it's submited to db, not in between.So you would have a select list for the number of rows?
    Add that X(select list) number of rows, populate rows, then insert?
    Is that how you vision it?
    Did you try this? [Tabular Form Add Rows Using Item | http://htmldb.oracle.com/pls/otn/f?p=31517:209:3291656615866862:ADD:NO:::]
    Edited by: MHolley on Mar 11, 2009 8:53 AM

  • Deleting more than one row at a time

    Hey all,
    Im trying to be able to delete rows from my arraylist and UI table but im getting Index out of bounds exep.
    I think its because of the numbering, like counting through the i in the for loop is making it look at something different.
    Can anyone help?
    Thanks!
    selectedObjects = table.getSelectedRows();
                if (selectedObjects.length != 0)
                   for (int i = 0; i < selectedObjects.length; i++)
                        table.deleteRow(selectedObjects);
    rows.remove(selectedObjects[i]);

    I think its because of the numbering, like counting
    through the i in the for loop is making it look at
    something different.This is exactly correct.
    Personally I would look to see if those objects have a method named "clear" or "removeAll" or something like that, so you don't have to write that loop at all.
    But if you do have to write the loop, write a loop that continuously deletes the last entry until there aren't any more. This logic doesn't have the numbering problems that your code does.

  • Has anyone successfully implemented fetching more than one row at a time?

    I ask, since I'm having problems even with the simplest of scenarios. I went all the way back to the sample code given in the documentation (listed below) and it doesn't even work! I throws a data truncated exception on the employee number (even though the field is only 4 digits!) Help?
    int empno[5];
    char ename[5][11];
    ub2 enameLen[5];
    ResultSet *resultSet = stmt->executeQuery("select empno, ename from emp");
    resultSet->setDataBuffer(1, &empno, OCCIINT);
    resultSet->setDataBuffer(2, ename, OCCI_SQLT_STR, sizeof(ename[0]), enameLen);
    rs->next(5); // throws ORA-01406!

    pass the size of the number field too.
    resultSet->setDataBuffer(1, empno, OCCIINT, sizeof(empno[0]));
    ...

  • Is there a datatype that allows me to store more than one item at a time

    Hello Everyone,
    Is there a datatype that allows me to store more than one item at a time , in a column in a row?
    I have to prepare a monthly account purchase system. Basically in this system a customer purchases items in an entire month as and when required on credit and then pays at the end of the month to clear the dues. So, i need to search the item from the inventory and then add it to the customer. So that when i want to see all the items purchased by a customer in the current month i get to see them. Later i calculate the bill and then ask him to pay and flushout old items which customer has purchased.
    I am having great difficulty in preparing the database.
    Please can anyone guide me! i have to finish this project in a weeks time.
    Item Database:
    SQL> desc items;
    Name Null? Type
    ITEMID VARCHAR2(10)
    ITEMCODE VARCHAR2(10)
    ITEMPRICE NUMBER(10)
    ITEMQUAN NUMBER(10)
    Customer Database:
    SQL> desc customerdb;
    Name Null? Type
    CUSTID VARCHAR2(10)
    CUSTFNAME VARCHAR2(20)
    CUSTLNAME VARCHAR2(20)
    CUSTMOBNO NUMBER(10)
    CUSTADD VARCHAR2(20)
    I need to store for every customer the items he has purchased in a month. But if i add a items purchased by a customer to the customer table entries look this.
    SQL> select * from customerdb;
    CUSTID CUSTFNAME CUSTLNAME CUSTMOBNO CUSTADD ITEM ITEMPRICE ITEMQUANTITY
    123 abc xyz 9988556677 a1/8,hill dales soap 10 1
    123 abc xyz 9988556677 " toothbrush 18 1
    I can create a itempurchase table similar to above table without columns custfname,csutlnamecustmobno,custadd
    ItemPurchaseTable :
    CUSTID ITEM ITEMPRICE ITEMQUANTITY
    123 soap 10 1
    123 toothbrush 18 1
    ill just have it as follows. But still the CUSTID FK from CustomerDB repeats for every row. I dont know how to solve this issue. Please can anyone help me.
    I need to map 1 customer to the many items he has purchased in a month.
    Edited by: Yukta Lolap on Oct 8, 2012 10:58 PM
    Edited by: Yukta Lolap on Oct 8, 2012 11:00 PM

    You must seriously read and learn about Normalization of tables; It improves your database design (at times may increase or decrease performance, subjective cases) and eases the Understanding efforts for a new person.
    See the below tables and compare to the tables you have created
    create table customers
      customer_id       number      primary key,
      fname             varchar2(50)  not null,
      mname             varchar2(50),
      lname             varchar2(50)  not null,
      join_date         date          default sysdate not null,
      is_active         char(1)     default 'N',
      constraint chk_active check (is_active in ('Y', 'N')) enable
    create table customer_address
      address_id        number      primary key,
      customer_id       number      not null,
      line_1            varchar2(100)   not null,
      line_2            varchar2(100),
      line_3            varchar2(100),
      city              varchar2(100)   not null,
      state             varchar2(100)   not null,
      zip_code          number          not null,
      is_active         char(1)         default 'N' not null,
      constraint chk_add_active check (is_active in ('Y', 'N')),
      constraint fk_cust_id foreign key (customer_id) references customers(customer_id)
    create table customer_contact
      contact_id        number      primary key,
      address_id        number      not null,
      area_code         number,
      landline          number,
      mobile            number,
      is_active         char(1)   default 'N' not null,
      constraint chk_cont_active check (is_active in ('Y', 'N'))
      constraint fk_add_id foreign key (address_id) references customer_address(address_id)
    create table inventory
      inventory_id          number        primary key,
      item_code             varchar2(25)    not null,
      item_name             varchar2(100)   not null,
      item_price            number(8, 2)    default 0,
      item_quantity         number          default 0,
      constraint chk_item_quant check (item_quantity >= 0)
    );You may have to improvise and adapt these tables according to your data and design to add or remove Columns/Constraints/Foreign Keys etc. I created them according to my understanding.
    --Edit:- Added Purchases table and sample data;
    create table purchases
      purchase_id           number        primary key,
      purchase_lot          number        unique key  not null,     --> Unique Key to map all the Purchases, at a time, for a customer
      customer_id           number        not null,
      item_code             number        not null,
      item_price            number(8,2)   not null,
      item_quantity         number        not null,
      discount              number(3,1)   default 0,
      purchase_date         date          default sysdate   not null,
      payment_mode          varchar2(20),
      constraint fk_cust_id foreign key (customer_id) references customers(customer_id)
    insert into purchases values (1, 1001, 1, 'AZ123', 653, 10, 0, sysdate, 'Cash');
    insert into purchases values (2, 1001, 1, 'AZ124', 225.5, 15, 2, sysdate, 'Cash');
    insert into purchases values (3, 1001, 1, 'AZ125', 90, 20, 3.5, sysdate, 'Cash');
    insert into purchases values (4, 1002, 2, 'AZ126', 111, 10, 0, sysdate, 'Cash');
    insert into purchases values (5, 1002, 2, 'AZ127', 100, 10, 0, sysdate, 'Cash');
    insert into purchases values (6, 1003, 1, 'AZ123', 101.25, 2, 0, sysdate, 'Cash');
    insert into purchases values (7, 1003, 1, 'AZ121', 1000, 1, 0, sysdate, 'Cash');Edited by: Purvesh K on Oct 9, 2012 12:22 PM (Added Price Column and modified sample data.)

  • How can I highlight more than one pic at a time?

    First of all, THANKS for anyone that may answer since APPLE obviously has no desire to get off their ***** and help their customers.
    About ten days ago I was prompted to install apples new operating system. So of course I clicked OK, idiot that I am!
    Now I'm stuck with this new piece of **** operating system that I wish I could uninstall.
    ANYWAY,
    I upload a lot of pix for stuff I sell on EBay, sometimes 3-400 at a time. When I delete photos it's usually 1,000 at a time, and I assure you I'm not exaggerating. Up until now I was able to touch the END pic and swipe the whole horizontal row with two fingertips and the whole row of 7 would get checked. With the new ios7 I am unable to do it anymore (yet ANOTHER reason I don't want this 'improved' OS).
    Does ANYONE know of a way to highlight more than one pic at a time?? Remember the old windows system where you could click one pic, then hit SHIFT and click a lower one and it would highlight them all, in between, for a quick delete?
    There MUST be a way to delete, or rather highlight (or CHECK) more than one pic at a time? Anyone?
    THANKS, Rich

    Yes, I know the photos stored on the device... But which app are you accessing the photos with? Which app do you want to be able to highlight more than one pic at a time in?
    There are literally thosands of apps that access the iOS Photo Library - which one(s) are you using?

  • Can't gift more than one song at a time

    Does anyone know how to gift more than one song at a time (not an album, but non-contiguous songs off one or multiple albums)?
    I tried adding them to my wishlist so I could add in several, but I already own several of the songs and you can't add songs you already own.
    Of course, this would be resolved if they would just bring back the shopping cart, but for now, I have no idea how to accomplish what should be a very simple task.

    It is, indeed, frustrating, and seems short-sighted on Apple's part. Imagine a shop owner saying, "You can buy anything you want for yourself, as many as you like, but if it's a gift, you can only buy one."
    I did receive a nice response from Apple confirming that this is, in fact, impossible to accomplish:
    Dear Michael,
    Welcome to iTunes Store Customer Support. I am Animesh and I will be assisting you today.
    Thank you for your interest in giving an iTunes Store or App Store gift. I understand that you would like to gift multiple songs from different albums. I understand that this is important for you.
    Michael, please note that you can buy a song, an album, a video, an audiobook, a TV episode or season, a movie, or an application for anyone who has a valid email address. However, there is no such option to gift multiple songs at a time from different albums. You are required to gift them individually, also the Wishlist feature is for personal usage and not gifting.
    I can realize that it must be difficult for you. I have felt the same way in the past when I've found myself in similar circumstances. I have found in situations like this that voicing your opinion is a good way to get the "ball rolling".
    Please know that Apple takes the feedback from our customers very seriously. This is the reason for our feedback page - to create a forum where our users can vent, praise or share whatever feelings they have to allow us to meet your needs, and grow as a company.
    I took the liberty of submitting your feedback to Apple on your behalf. I would also encourage you to share this link with all of your friends and family who wish to submit the feedback, and have them all submit the same request.
    Here is the link for you.
    http://www.apple.com/feedback/itunesapp.html
    I know sometimes it feels as though submitting feedback will not yield results, so I will also invite you to check out the following link. This is a letter from Apple's CEO addressing customers who purchased an iPhone very early on at $599, then the price went down to $399 shortly after. Mr. Jobs heard our customers and Apple responded accordingly.
    http://www.apple.com/hotnews/openiphoneletter/
    I hope that you will consider sharing your thoughts on the feedback page.
    Michael, we very much appreciate your concerns, and if there's anything else I can do for you, just respond to this email and let me know. Thank you for supporting the iTunes Store.
    Sincerely,
    Animesh
    iTunes Store Customer Service

  • Firefox won't let me open more than one window at a time. how do i fix the problem

    Firefox won't let me open more than one window at a time. It use to allow me to open multiple windows before but for no apparent reason it stopped. I uninstalled it and re-installed but I'm having the same problem. How do I fix the problem
    == This happened ==
    Every time Firefox opened
    == several days ago

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    You have to close and restart Firefox after each change via "File > Exit" (on Mac: "Firefox > Quit")

  • Can one add more than one photo layer to a draw image?

    I cannot seem to find a way to add more than one photo or photo layer to a Draw image, but the Draw page on Adobe seems to imply multiple photos can be added. How might I accomplish this? Thanks for your time.

    Unfortunately, Draw is currently limited to one photo layer, and only one photo within that layer.
    Hope that helps,
    Frank
    Draw Engineering

Maybe you are looking for

  • Touchsmart 9100 Audio Cuts Out

    I have Touchsmart 9100 with Realtek High Definition Audio running Win 7 Home Premium SP1, 8GB RAM (currently: 7.75GB Physical, 1.88GB Available, Total Virtual 13.7GB, Available Virtual 7.53); Dell 5650 5.1 surround sound with the three-to-one reducer

  • Is it possible to cluster WLS AdminServers...

    We have IDAM 11.1.1.5 installed with all its bits and pieces running on RHEL5.6 on 2 servers. The servers are clustered and we are using Grid Clusterware to create the RAC cluster for the database (11.2.0.1). We have the full WLS 10.3.5 installed on

  • JTextPane and Icons

    This is code that adds text and icons to a JTextPane. When the icon is add last all is well but when text is add after the icon. The icon disapears. I know its because icon is imbedded in the text bit how can I get around this. Thanks JTextPane pane;

  • Premiere Pro CC crash at startup c:\sirreel64\releases\

    Since two months ago, when I try to open Premiere Pro CC projects, the program crash and appear the message: "Premiere Pro has encountered an error" [ c:\sirreel64\releases\2013.02\shared\adobe\mediacore\mediafoundatio\api\inc ] If I open new project

  • Print Setup Utility Keeps Quitting

    I reinstalled Tiger because my system would shut off instead of go to sleep whenever I left it for any extended period of time. So I thought there was a problem with the operating system (maybe) and reinstalled. Now I cannot get into Print Setup Util