a horizontal line of cells in a spreadsheet, sql table, html table or similar structure.
0
votes
0answers
25 views
duplicate row.names not allowed R
I have a file with 21 fields as headers in the first row. The remaining rows have unequal number of fields, some of the rows have more columns than the headers. When i tried to read it using ...
1
vote
4answers
21 views
Moving the second column to first column using awk
I would like do the following using awk:
Example of my input data with four columns and a number of rows:
10 20 30 40
50 30 60 80
90 12 40 20
Desired output:
10 20
30 40
>
50 30
60 80
>
...
0
votes
0answers
22 views
WPF DataGrid - Different Template for special Rows
First of all, I'm not asking the code of the solution. I'm quite new to WPF so I'm only asking if what I need to do is feasable.
I would like to fill a WPF DataGrid with a list of object, say ...
1
vote
0answers
14 views
Auto Resize Row Height after pasting in Excel
I use MS Excel 2007 to make Bills and Quotation. Often I need to reuse previous quotation.
After I copy a quotation and paste it to new location the row height needs to be readjusted for each row.
...
0
votes
0answers
19 views
How to programatically click or select a jQuery ComboGrid row via javascript?
friends.
I have tried this every way I could think about, and I have searched on google and here in stack overflow but have not found any answers for how to click, programatically, in a jQuery ...
0
votes
2answers
34 views
Copying Rows in For Loop and Pasting to new Sheet
I am having problems copy/pasting rows based on criteria.
Dim lastrow1 As Long
Dim lastcolumn1 As Long
Dim Distance As Long
Distance = 14
Set sh = ThisWorkbook.Sheets("Sample Address Database")
Set ...
0
votes
0answers
21 views
How to add the data from 2 or more rows to one row in postgresql
I have Postgresql 9.2 and would like to know how to group this query so that we get only one user and would like to group by app_user2group_item_ex.user_id or app_user.id so that instead of 6 rows I ...
0
votes
1answer
32 views
How to get selected indexPath.section and indexPath.row value in UITableView?
I have insert 2 section and 2 rows in tableview, then i tried to get selected section and row value using UITapGestureRecognizer, but i have to get only indexPath.section value, i want both section ...
0
votes
1answer
23 views
PHP/MySQL How to SELECT data from two tables which only first row of second table is selected for one row of first table
table 1 contains fields: tab1_id name, description
table 2 contains fields: tab2_id,id,choice.
by using the following query
SELECT * FROM table1 AS t1
INNER JOIN table2 AS t2
ON ...
0
votes
2answers
29 views
Bootstrap css specific layout row and column [closed]
I want to this in bootstrap :
How i can do that ?
Thx
1
vote
1answer
12 views
Access VBA - Display table row data in a Msgbox
I'm rather new to programing with Access VBA and I've not been able to find out anywhere that could help me with this problem.
I'm working with a table that contains a list of postcode for the ...
0
votes
5answers
40 views
Updating Table rows using jQuery
Suppose you have a html table:
<table id="data">
<thead>
<tr>
<td>ID</td>
<td>Username</td>
<td>First ...
0
votes
2answers
19 views
Switch row content in table [closed]
I am writing an email for work and it has to use table based layouts. My problem is that I want to have the middle section switched, with the image on the right and the text on the left.
Do I have to ...
0
votes
1answer
13 views
Get only the maximum value row in MDX
I'm new in MDX. I need to get the the row with MAX(Depth) in the following (Depth is a measure);
Username, Role, Category, Location and Form is dimensions. Name of the Fact table is AccessControl
...
0
votes
1answer
34 views
SQL - Sort a row in table using PHP
I have an admin control panel where I add my images.
And the images are "transfered" to the table ' backgrounds '.
What I want to do is to sort a row in the table so the website would show different ...