All Questions
12,180 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
2
answers
63
views
Why does mainAxisAlignment not show any effect (no errors)?
child: Row (children: [
Padding(
padding: const EdgeInsets.all(8),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
...
0
votes
0
answers
44
views
How to merge rows with the same ID into one row by taking non-null values
I am working with a table in DolphinDB where multiple rows share the same id, and each row contains non-null values in different columns. My goal is to consolidate these rows into a single row for ...
0
votes
1
answer
75
views
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 ...
0
votes
0
answers
47
views
Would it be a good practice to make Talkback read all the items in a lazy row automatically?
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 ...
0
votes
1
answer
68
views
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 ...
1
vote
2
answers
91
views
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 ...
1
vote
2
answers
214
views
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 ...
0
votes
0
answers
28
views
Creating a Dynamic Table in android using TableLayout while setting the column view attributes in layout file
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 ...
-1
votes
1
answer
58
views
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. ...
1
vote
2
answers
98
views
Query to automatically update values based on other certain criteria [closed]
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 ...
-1
votes
0
answers
54
views
AgselectedRowCountComponent in ag-grid status panel shows all rows instead of filtered selected rows
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, ...
-2
votes
3
answers
118
views
Ignore more than one row for a pattern in bash
While listing some logs, I get the following pattern:
id:Batch1
1:processed
id:Batch2
1:processing and some info
I get multiple rows like this and they are not sorted in any way. There is no pattern ...
11
votes
5
answers
801
views
In R, how can I collapse the data of grouped rows into one row?
I have the following sample dataframe:
df <- data.frame(
record_id = c(1, 1, 1, 2, 2, 3, 3, 3),
instance = c(NA, NA, 2, NA, 1, 2, NA, NA),
A = c(10, NA, NA, 20, 25, NA, 30, NA),
B = ...
1
vote
3
answers
92
views
How to get difference value (delta) between to rows after query in Mariadb
Helo,
this is my query:
MariaDB [PV_Anlage]>
SELECT created_at, verbrauch_ges
FROM pv_metrics
group by DATE(created_at)
ORDER BY ID DESC limit 20;
+---------------------+---------------+
| ...
0
votes
1
answer
48
views
Remove rows based on duplicated values in one column [duplicate]
I have the below sample table and I need a second table without duplicate grouped values from column 'Values'
+----+--------+
| Id | Values |
+----+--------+
| 1 | A |
| 2 | B |
| 3 | B ...