Inserting/deleting spreadsheet row in Google Docs

When using Google Docs on an iPhone (or iPod Touch in my case), how does one insert a row at a certain location? There is a function to add a row, but that is only appended at the bottom, even if I've selected another row. I was using the new version of Spreadsheet on a laptop, but I'm not sure what version gets used when I access the document on the iPod Touch.

Re:  "...now is there any way to..."
I see "mission creep" ocurring here.
Your request can get complicated...
  What if the user enters "1,3;xyz,9 44" ?
  You can prevent entries into a textbox, that are not numbers or commas, using the Textbox_KeyPress event.
  You can also clean up the text after entry by removing all non-numbers and dupe commas.
  Then the Split function can be used to separate the entry into row numbers.
  Verification by the user (with a message box) at this point would be wise.
  Each row could then be verified to contain data using Application.WorksheetFunction.CountA.
Suggest you review the VBA help file for: KeyPress event, Like operator, Split function, Msgbox function and the Excel CountA function; then post a new question.
Jim Cone

Similar Messages

  • Can Firefox be optimized for google docs

    When I bring up a spreadsheet online in google docs Firefox starts dimming the screen, others tabs run slow. The screen dimming will last, for 2-3 minutes, and then clear up, 2-3 minutes later it will dim again. The fewer tabs I have helps, but not the answer. IMO the problem has gotten worse over the few upgrades. I have an HP 2000 Laptop, CPU 1300.000 MHz, memory 7586 MiB.
    Thx, Larry

    Start '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Firefox in Safe Mode]''' {web Link} by holding down the '''<Shift><br> ''(Mac Options)'' ''' key, and then starting Firefox. Is the problem still there?

  • The attachements are all converting to google doc from pdf. How do I keep pdf?

    Thunderbird now sends and receives all my pdf files as google docs but I would prefer that they remain pdf. Even reports sent from Quickbooks.
    thanks

    Tools menu (Alt+T) > options > Attachments and delete all references to google docs or PDF and then restart Thunderbird.

  • How do I insert/Delete/Update a row to the DB Table from Business Component Browser

    I am using the wizard and created a project containing Business component which contain some table.
    When I run the project I could see "Oracle Business Component Browser(local)" and when I select some table from "View Object Member" I get a window displaying all the field of that table and I could browse all the info.
    My Problem is when I try to insert a new record/Delete the existing record or update some record it never gets reflected to the DataBase.
    When I try to insert a new row I did save and there was a dialog box displayed saying "Transaction ID is 1". But finally It's not reflected in the Database.
    Can some one guide me how can I do insert/delete/update operation from Oracle Component Business Browser so that the changes reflect to the Original DataBase.
    Thanks in advance
    Jitendra

    Jitendra,
    This may be a problem of caching. If you do an update,insert, or delete, and do not receive an error, then the transaction should indeed be posted.
    I assume you are hitting the Save icon after your changes if you are getting a transaction ID. Are you checking for the updates through another session (i.e. SQL*Plus), or do you then requery the View Object in the tester? Do you exit the tester and come back in and not see the changes?

  • How to stop insert of new row in tabular form if it's also being deleted

    Suppose you have a tabular form, and one of the fields is a not-null column. A user checks a button to "add additional row", which adds a new row to the form, defaulting that not-null column to null. Assume it's a name or something, so there is no reasonable non-null default value that can be entered here to keep it from being null.
    Now suppose the user makes a series of changes on the page, but then decides they don't want that row they just added, so they mark it for deletion, then click on "Delete Checked Rows". The not-null column was left blank.
    The page is constructed in such a way that the ApplyMRD process runs first, then the ApplyMRU process. (I do this so that the user doesn't lose all their updates if they want to delete a row. I've had a few people complain when they tried to combine both operations, and unexpectedly lost their updates when they hit delete instead of submit.)
    What happens? The page errors out because the ApplyMRU process is trying to insert a row with a null value in a not-null column. The ApplyMRD process ran fine, but because the row marked for deletion didn't exist in the database to begin with, it effectively did nothing. But ApplyMRU still tries to add the row, even though it was marked for deletion.
    Is there any way to prevent this scenario from happening, without requiring the user to Cancel instead of deleting the blank row, which would cause all other changes on the page to be lost? I'd also like to avoid losing the ApplyMRU process when the user clicks "Delete", since it's more effective to combine operations and this will address the UI complaints I'd received otherwise.
    (This is on ApEx 4.0, if it matters.)
    Thanks,
    Keith

    Thinking about this some more, doing the delete and update together may not be an easy thing to accomplish after all.
    Consider the above scenario, but the user puts a dummy value like "ignore-me" into the not-null text field, so the error doesn't come up with ApplyMRU is fired. But if ApplyMRD runs before ApplyMRU, it still doesn't do anything because there is no row in the database with the value "ignore-me". Then ApplyMRU runs and it adds that row, even though it was marked for deletion.
    So you probably need to always run ApplyMRU before ApplyMRD. But then you wind up inserting a row before you delete it, and that may have unintended side effects, if the user really never wanted to add it in the first place.
    Right now, the only workaround I can think of is to:
    1) put ApplyMRU before ApplyMRD
    2) add a pre-commit validation that checks to see if a row is blank AND checked, and if so, put a dummy value into the not-null field
    3) let that row get added and then deleted, and make sure there are no side effects from this (for example, there is an audit table that tracks updates to the base table -- I can add a trigger that does nothing if presented with this dummy value)
    Hopefully, though, there is an easier and more "built-in" way to achieve what I'm aiming for.

  • Insert a spreadsheet and word docs into a PDF with hyperlinks

    I have a spreadsheet index with hyperlinks to 455 single page word docs. I want to make a single pdf by inserting the spreadsheet followed by the word docs.
    Is there a way of having the hyperlinks recognize the inserted word docs pages inside the pdf via the original hyperlinks, or do I need to remove the hyperlinks before inserting the spreadsheet and then do bookmarks for all 455 pages? Or some other method?

    James,
    I doubt that will work. But it should be easy enough to find out. If you
    print to pdf from ID, I guarantee is will not work. If you export from
    ID, I doubt it will work, but ask in the ID forum, since the creation
    does not depend upon Acrobat.
    Mike

  • How to insert and delete a row after filter applied

    I thought I had figured out the solution to this problem but apparently not...
    How do you insert a new row into a JTable after a filter has been applied? The problem is once the data is filtered when I add a row, I'm getting an ArrayIndexOutOfBoundsException : 182 which is the number of rows for the entire dataset.
    The first line in the exception is: DefaultRowSorter.setModelToViewFromViewToModel
    I've tried to use, getRowSorter().convertRowIndexToView(int) but I can't get it to work. Can anyone offer any assistance?
    Thanks

    I also got that problem recently and after debuging for a while I figured out, that it was resulting from an error in my table's model: When the model received new items to display I
    1.) Fired an delete event for the old items
    2.) Fired an insert event for the new items
    Problem was that when firing the delete event I didn't already assigned the new items to the model. Therefore it had still the old row count.
    Maybe you have also a faulty table model?...

  • How do I insert or delete a row in tree during program execution ?

    Trying to understand how to edit/modify a tree control during program execution, specifically if I want to add a row or delete a row.
    Thanks

    Hi dwjef,
                 Go through this.I think by going through this you we will get an idea of how to achieve what you are trying.
                 https://decibel.ni.com/content/docs/DOC-20747
    Thanks as kudos only

  • I want a user to only be able to update/delete the rows they inserted

    hi guys,
    I have a table 2 users are inserting into. They can also update/delete the rows in the table. However, I do not want them to be able to update/delete the others users row. I only want them to have update/delete at the row level.
    how can this be achieved?
    thanks

    Another idea if you really have just two (or a fixed set of N) users.
    Does your table have a generic primary key (PK)?
    You could use two (N) sequences having two (N) distinct sets of numbers as e.g user a is using sequences less than 1000000000, the other one values larger or equal to 1000000000.
    create sequence <user_a>.pk_seq start with 0;
    create sequence <user_b>.pk_seq start with 1000000000;An insert trigger uses <user_a>.pk_seq or <user_b>.pk_seq for generating the PK depending upon the current user for new records.
    An update trigger allows updates only, if the PK of the record to be updated is in the range of sequences belonging to the current user.

  • Google Docs spreadsheet performance is poor in Firefox 4

    With Google Docs spreadsheets in Firefox 4 I experience a significant amount of slowdown and unresponsiveness when loading, editing or navigating any given document. This seems to be tied to hardware acceleration - if I deselect "Use hardware acceleration when available" or change "gfx.direct2d.disabled" to true I do not have this problem.

    Maybe this pref extensions.webservice.discoverURL
    https://services.addons.mozilla.org/en-US/firefox/discovery/4.0/Windows
    <blockquote><pre>Something good is coming!
    This area will soon explain what add-ons are, feature some of the best, and help you pick from thousands of ways to customize Firefox.
    Until then, visit the Firefox Add-ons website.</pre></blockquote>

  • I'm trying to insert a new row, but not a whole row  on  a spreadsheet, but all i can seem to do is insert a full complete row? iPad Air Wi-Fi

    I'm trying to insert a new row, but not a whole row  on  a  pages app spreadsheet, but all i can seem to do is insert a full complete row?

    What exactly are you trying to do? As I stated in your other thread, there is no such thing as a partial row.

  • Can't enter minus sign in Google Docs spreadsheet

    In a Google Docs spreadsheet, I can't enter a minus sign (hyphen) in a cell until I've typed in a number, then I can go back and enter the minus sign. I think this started with Firefox 15.0, and I have replicated it on another Mac, both running OS 10.7.4.

    This is not just Mozilla problem, but same for all browsers. You can use the minus key on the numpad of your keyboard, but not the dash key. Unfortunately, if you are not using full-size keyboard, you can't easily access the numpad minus.
    I have been using this method myself on my laptop: hit any number/letter, then quickly hit backspace and then dash. This for some reason lets the dash key to enter as a minus sign.
    Graendal's way is much better, but still, I don't understand why Google decided not to allow the dash sign to be used as a minus sign.

  • Google Docs and Spreadsheet not supported in Safari

    Hi,
    Does anyone know if there will be a support for Google Docs and Spreadsheet in Safari?
    Somebody already ask this question a while ago in June 2006...
    David
    G5   Mac OS X (10.4.8)   Complete with chorizo

    There is support for Firefox 1.5 on the Mac platform, but nothing yet for Safari. See this note from Google.
    iMac G5 Rev C 20" 2.5gb RAM 250 gb HD/iBook G4 1.33 ghz 1.5gb RAM 40 gb HD   Mac OS X (10.4.8)   LaCie 160gb d2 HD Canon i960 printer

  • Table layout w.r.t other tables and text while inserting/deleting rows.

    I have 3 tables in a single page. One is left aligned and other two are right aligned. Then there is some text below the tables. 
    Now when I delete some rows from Table-1 the left aligned one, the Table 2 and text shift up filling the space below Table1.
    Now I don't want the text/table to shift up/down when I add/delete rows from Table1 i.e Table1  should expand/contract in the empty space below it.
    Now If I do the same thing for Table3 (Right aligned one) i.e add/delete rows there is no effect on text as shown :
    All 3 tables are same and have exact positioning and other properties.
    Please suggest any solution as I would be populating the table through word automation service (interop).

    Another approach would be to use nested tables, with your 'outer' table having two columns and the inner tables going into different columns. You can hide the outer table's cell borders so its presence is less apparent. If the Outer table has auto row
    height, it will adjust to accommodate whatever row addition/deletion you do to the inner tables. The only proviso is that the inner tables shouldn't have 'around' text wrapping. The two rhs tables can go into the same cell - all they need is a separating paragraph.
    With this layout, the text will always remain below the outer table.
    Cheers
    Paul Edstein
    [MS MVP - Word]

  • Safari and Google Docs&Spreadsheets

    When I switched to Leopard I decided to use Safari to browse the web leaving my glorious Firefox just because.... I wanted to try.
    Today I discovered that if I try to enter a document in my Google Docs a window appears saying :
    "Oops, sorry Safari is not yet supported.
    Do you want to continue?"
    Is that possible? Is there a solution?
    Message was edited by: maxito71

    Everything changed with last update. I forgot to tell, sorry.

Maybe you are looking for

  • Master Slides - Need alternate solution.

    I am an Apple Keynote/Aperture user who desires to create multi-image slides using a grid in which individual photos are deposited into cells like picture frames - sort of like a school yearbook layout. I have experimented with creating master slides

  • Finder stopped working altogether, and can't see Volumes on desktop

    I cannot open a finder window and I can't open any folders on the desktop either and my harddrives aren't showing up. I updated to 10.4.5, I also recently turned on "see hidden files" but later turned it off Another weird circumstance was for a few s

  • New Content Type with RDL template

    I'm building a new Project Server 2010 site template and one of the libraries that I want to provide will store the Status Reports for each Project. I'm struggling with what seems like a simple concept. Create a new Content Type that uses the status_

  • CS5.5 Subscription: Unable to connect to internet. No one answers this forum anymore.

    Hi. I am having much trouble with what is discussed in this old forum http://forums.adobe.com/thread/882978?start=0&tstart=0 It seems that the guy who was helping is no longer with Adobe because when I email him as instructed I get this Delivery to t

  • Auto-brightness Won't Turn off after Win 8.1 update

    I have a Y510P, and I got the Win 8.1 update about a month ago. Since then, my screen auto-dims whenever the average color of the screen is darker than plain white. So every time I am on a website that has a picture (like Facebook), as soon as I scro