Questions tagged [rowdeleting]

91 questions
0
votes
2 answers

deleting rows containing excel vba

New to VBA and this is my first time posting a question. I have a workbook that contains about 50k records. The data is comprised of approx. 2700 us stocks with with bi-weekly data updates to look at price, volume traded, etc. I will be updating…
KPC
  • 3
  • 1
0
votes
2 answers

XCODE 5.0, keeping a table values Mutable

I will try to be more clear by providing code. The objective is to grab information from a plist. (a Title and a subtitle) and add this to a table. The following code works for me but does not allow me to delete any of the rows. I am trying to…
0
votes
1 answer

UserForm taking too long to delete rows

I have been developing a UserForm that uses a listbox populated by the A column to delete specific rows based on listbox selection. But when I click the "Apply" button it takes a ridiculously long time until it processed and deleted the rows. The…
Casz146
  • 37
  • 1
  • 8
0
votes
3 answers

Why the table row is not getting deleted by using following code in jQuery?

I've following HTML of a table. The actual table is too large. For your reference I've shown only two rows from this large HTML table:
PHPLover
  • 1
  • 51
  • 158
  • 311
0
votes
2 answers

C#: Deleted row information cannot be accessed through the row--But I want to read the next row

Got the error info as title shows. But what I want is reading one row from datatable, insert into my calendar control, then delete this row, and read next row, insert, then delete the next. But I got this error Below is my code for (int i = 0; i <…
Windtalker
  • 776
  • 4
  • 13
  • 23
0
votes
1 answer

Nested gridview row not (fully) deleted after OnRowDeleting event

I have a nested gridview of images that are associated with the parent grid's row on a one to many relationship. This structure is contained in a user control. The images are uploaded with a fileupload control and are stored in a folder on the…
jedi jay
  • 125
  • 3
  • 10
0
votes
3 answers

Fire only one event after deleting multiple DataTable rows

I have a DataTable with many rows, and the DataTable is bound to a DataGrid. After deleting one or more rows via the DataGrid, I need to run specific, quite complex checks on the remaning rows. I subscribe to the RowDeleted event, and call the…
Adam Szabo
  • 11,302
  • 18
  • 64
  • 100
0
votes
1 answer

How do I most efficiently remove entries from a DataTable?

I'm developing on a more or less legacy C# application and stumbled upon a code that I wrote some time ago. But somehow I get the feeling, that this is not really a good approach to this. How would I make this code better? public static void…
bberger
  • 143
  • 9
0
votes
1 answer

How to Get StrikeOnText Effect in a table view while enable the edit option using xcode4.3 & above?

How to get Strike Text Animation while we select edit option for the table view and also when we swipe on a table row.We need to get this type of style before deleting! I want in xcode4.5 Please help me out by providing suggestions and posts and…
Danny
  • 1,050
  • 3
  • 11
  • 26
-1
votes
1 answer

Deleting rows in between numbers and delete checkbox rows

const ss=SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Potential Matrix"); const rg=ss.getDataRange(); const vs=rg.getValues(); let d=0; vs.forEach(function(r,i){ if(r.join('').length==0 || r.join('')=='false') { …
-1
votes
1 answer

Row deletion on named sheets

I am trying to delete a row containing ISIN Value in a workbook in multiple sheets. I am able to delete the ISIN in couple of sheets but not Spread calibration sheet and fuel& quality sheet. Sub del() Dim num As Integer Dim del As String …
-1
votes
3 answers

How do you remove rows in an excel sheet?

I do not want my question to be mistaken for deleting a row or deleting blanks. In a number of cases I have come across excel files that have an excessive amount of rows or columns. I would like to know how to remove the extra rows entirely. For…
-1
votes
1 answer

Deleting observations in stata based on variable

I am trying to get delete observations that occurred outside of my study's time restrictions using Stata. At the moment i have a variable Start_Finish that define the study time contraints. The first photoNo observations need to be deleted is how I…
-2
votes
2 answers

how to delete rows from a csv file which string in 1st column is the same of string in 1st column of another csv?

I have 2 csv files. I need to delete all rows of the first file in which the first column have a string found in the first column of the second file. The head of table 1…
-2
votes
2 answers

Python - deleting lines and previos lines (matching pattern patterns)

I want to find the lines which start with a word of a list. If the word is found i want the line it stands in and the previous line to be deleted. I am able to get the line and the previos one and print them but i can not get my head around not to…
Mady
  • 443
  • 7
  • 19