Quantcast
Channel: Active questions tagged row - Stack Overflow
Browsing latest articles
Browse All 495 View Live
↧

How to get the rowindex by searching text from datagridview on vbnet

I am stuck on a simple thing. My app has a datagridview with 3 columns. One columnshave the name "Sites" and I have added the rows to it as in: sites1, site2, etc.What I want is for it to give me the...

View Article


How to get a specific row by worksheet and rowindex in excel file

I need to choose a specific cell in my excel file via using openXML:Worksheet workSheet = workSheetPart.Worksheet;Cell cell = GetCell(workSheet, "B", 2);private static Cell GetCell(Worksheet worksheet,...

View Article


AgselectedRowCountComponent in ag-grid status panel shows all rows instead of...

I am using AgselectedRowCountComponent in the status panel of an ag-grid table to display the count of selected rows. However, when i filter the data and use the "Select all" functionality, the...

View Article

Python print first row of list

I'm sure there a simple solution to this question but so far it has eluded me.I simply want to print out the first row the below list where [0] is the None value and [1] is the time stamp. Where ss is...

View Article

Query to automatically update values based on other certain criteria

I've got a SQL query that is trying to update threshold information on a SolarWinds database.The main data is within the Nodes view and the Thresholds table contains the warning and critical threshold...

View Article


How to fetch only one row from a CodeIgniter active record query

I'm looking for a way to return an array from the database query, but only for the first row. I'd prefer not to use objects.My current solution://Gather$data =...

View Article

How to copy the visible row instead of all row til the last row?

In my excel, there is a filter at E6 always, so the next visible row could be E170 or E600 or others, and i just wanna copy the visible rows under E6 instead of copying all rows before the last row....

View Article

Excel tab to new line after certain amount of columns

I am wanting to set up an excel spreadsheet for data entry with a barcode scanner.The barcode scanner sends the barcode then a tab OR an enter key depending how its programmed.Basically I want to set...

View Article


Creating a Dynamic Table in android using TableLayout while setting the...

I am trying to create a dynamic table in android and was analyzing to see if I can use the TableLayout, though I see various options of how to add rows dynamically but all the examples requires me to...

View Article


Combine rows with null columns based on other common columns on SQL

I'm running an SQL query on a dashboarding tool that gives a table result looking as follows :article_name color spec1 spec2article1 brown 0 article2 blue 1 article2 blue 3My query :select a.name as...

View Article

User Input VBA Autofill using more than one input

I need help for the following problem.I want to create a macro that as for how many rows are to be added depending on user input. In addition, each newly row will accept a different numerical value...

View Article

Image may be NSFW.
Clik here to view.

How to implement summary rows(Total rows) in WPF data-grid via MVVM

I need a help to to make a summary row or total a row in WPF datagrid using MVVM pattern, special of this summary row is having a value for each column like a image shows below.First total calculation...

View Article

Adding a calculated ROW to a table [closed]

Adding a calculated column is quite easy, but I cant seem to obtain any code for calculating and insert a calculated row.Now I know that the DB structure is not very good, but it is what it is.The...

View Article


Image may be NSFW.
Clik here to view.

Split bootstrap column in n rows with equal height, filling parent height

I'm quite new to Bootstrap, I'm struggling with the grid system while trying to reproduce the following template:In this example I have 3 columns:first columns holds some info/pictures. This column...

View Article

Spacing property still enacts on empty children

looking for a solution to a render pattern I am finding myself in.We tend to prefer spacing items with rows or columns using the spacing property instead of wrapping the child elements in their own...

View Article


Write a loop in R to collapse rows based on identical consecutive column values

I am trying to write a loop in R to collapse rows. Let's say I'm using a data frame like this one:r1 <- c(1, 1,1000,2)r2 <- c(1, 1001,2000, 2)r3 <- c(1, 2001,3000, 2)r4 <- c(1, 3001,4000,...

View Article

OpenPyXL Duplicate and populate row

I'm trying to copy a row, based upon cell value, and edit the 6th column value with the 'VAL' key values.For example row 10 contains "A1".The first column must get the first value of the VAL: A1 (AAA)...

View Article


Image may be NSFW.
Clik here to view.

Aligning children inside a row to the top doesn't work

How does one align the text ('Text Sample') to the top of the Row.Based on the image below, it shows it is sitting in the center.I have used crossAxisAlignment: CrossAxisAlignment.start but it doesn't...

View Article

Image may be NSFW.
Clik here to view.

Padding a table row

<html><head><title>Table Row Padding Issue</title><style type="text/css"> tr { padding: 20px;...

View Article

Remove one row from gridlayout

I'm using a GridLayout with 5 columns and multiple (not a fix value) rows. It is possible to add more rows with values to the grid by a add button (the values are hardcoded in hashmap for now).In each...

View Article

Programmatically preselecting a row in Material-UI's data grid(React)

I am currently creating a React web application and am using a DataGrid from google's Material-UI. The grid renders based on a selection of a select list(i.e if the select list is of fruits, and the...

View Article


Python pandas: Compare rows of dataframe based on some columns and drop row...

I have a data frame df: first_seen last_seen uri0 2015-05-11 23:08:46 2015-05-11 23:08:50 http://11i-ssaintandder.com/1 2015-05-11 23:08:46 2015-05-11 23:08:46 http://11i-ssaintandder.com/2 2015-05-02...

View Article


Would it be a good practice to make Talkback read all the items in a lazy row...

Is it a good practice to make Talkback read all the items in a lazy row automatically?For example, user focuses in the first item of the lazy row, talkback reads the whole item, and the move on to the...

View Article

Can't delete (and insert) rows anymore in an excel 365 file

I ran into an issue with Excel 365 last Friday.I was copying complete rows to another file (Ctrl+C and Ctrl+V) and deleted them afterwards from the source file (Ctrl+-).It worked fine until all over...

View Article

Copy row when cell contains "x" with another condition to meet

Spreadsheet screenshotI have a script from one of the old topics to copy row when a certain value is in a cell: var ss = SpreadsheetApp.getActiveSpreadsheet(); var s = event.source.getActiveSheet();...

View Article


How can remove one row in table with ajax

In this partial view I fill a table with a model an foreach loop, like below:<table id="tblGroup" class="table table-bordered"><thead style="background: #eeeeee;"><tr><th...

View Article

Convert the row of a matrix into a vector

I have my matrix "A" which the user defines its size, for example, the user define a size 3x5 for the matrix A: [1 2 3 4 5]A= [2 4 6 8 3] [2 4 5 7 8]I need to convert the rows into new vectors like...

View Article

Image may be NSFW.
Clik here to view.

Automatically move row to top when cell text changed

Is there a way to move a row to the top of the spreadsheet every time one of the cells in the row that was labeled open is changed to closed?I want this action every time not just once. I get them all...

View Article

How to add Excel like row number in PowerBI report? [closed]

I want an excel like row number in my PowerBI report. When I sort to any column, the row number stays the same as the first row is 1, the second row is 2 and so on.How to achieve it?

View Article



Pivot Table shows all rows regardless of value field selected

I am creating a schedule and capacity planner for the team I manage. On the data table along the top, I have a column for the task and who its assigned to, and then I have each day/date (Mon-Fri), for...

View Article
Browsing latest articles
Browse All 495 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>