answersLogoWhite

0

Delete alternate row

Updated: 11/8/2022
User Avatar

Wiki User

9y ago

Best Answer

When a program deletes every alternate row, it is telling the spreadsheet provider to leave a space between the rows of information. This will shorten the field at which to enter data, but provide the user with clearer information.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Delete alternate row
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you delete alternate rows in sql?

delete from table_name where(rowid,0) in (select rowid,mod(rownum,2) from table_name) this is for alternate deleting even row delete from table_name where (rowid,1)in(select rowid,mod(rownum,2)from table_name)this is for alternate deleting odd row


How do you delete an entire row or column in Excel?

Click on the row or column header you want to delete. Then right click and pick Delete.


How do you delete a row without using delete command in SQL?

You drop the table and the row is deleted along with it.


Does Excel automatically renumber cells when a cell is deleted?

Sort of... but, you don't actually delete a cell. You can delete either a row or column, but not a single cell. When you delete either a row or column, the remaining rows and columns (as appropriate for your actions) automatically renumber to reflect the missing row or column. If you delete row 6, then row 7 automatically becomes row 6, and so on to the end of the rows. If you delete the contents of a cell, the cell becomes blank, but no other cells are renumbered.


How do you delete row in oracle table from vb?

you right click it and you scole down to delete row in oracle table that should work


What is the knitting pattern of alternate knit and purl stitches?

If you are alternating each stitch (knit, purl, knit, purl) the pattern is called ribbing. If you alternate each row (row 1 knit, row 2 purl) it is called stockinette stitch.


How do you delete the second row fourth row and so on using macro?

The rows of what? Be more specific.


How can you reduce the number of cells in an Excel spreadsheet?

While the size of the entire worksheet will always remain the same, you can delete cells completely or just their content. Select the cells you want to delete. To delete their content only, just press the Delete key. To delete the cells completely, right click, select Delete... and choose the appropriate option, to either delete cells and move cells up or left, or to delete and entire row or column.


How would you remove only the contents of a selected row or column in Excel?

You highlight the row and then click Delete. You can also, after highlighting the row, go to the Menu under Format and there will an option to remove the row. If you goof, there is a two way circular arrow that you can click to undo the action.


How do you delete a single cell in a Google Doc - as opposed to a whole row or a whole column?

highlight it then press delete


How do you delete rows and columns from am Microsoft Excel table?

many a time you may require to add a row of data or a coloumn of data which you forgot to enter earlier .excel proveides you the facility to insert rows or columns onto the sxisting worksheet very easily .it is that inserting a row of data will shift the rest of the rows down and cause the ladt row of the worksheet ,the rest of the columns shift right ,if there is any data in the last row or column of the worksheet that will be lost .


How can delete a table Row in HTML?

Each row in a table starts with the <TR> tag, and the cells are started with the <TD> tags which are inside the TR tags. To remove a specific row just highlight, and delete from <TR> to</TR> for example a table with two rows might look like this: <Table> <TR> <td>first row</td> </TR> <TR> <td>second row</td> </TR> </Table> To remove the first row delete <TR> <td>first row</td> </TR> You will be left with: <Table> <TR> <td>second row</td> </TR> </Table>