Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
40 views

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 ...
xiyan zheng's user avatar
0 votes
1 answer
74 views

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 ...
help's user avatar
  • 1
0 votes
0 answers
44 views

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 ...
KotlinBeliever's user avatar
0 votes
1 answer
68 views

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 ...
Luke's user avatar
  • 23
1 vote
2 answers
91 views

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 ...
JEMA's user avatar
  • 11
1 vote
2 answers
203 views

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 ...
Elizabeth Rohs's user avatar
0 votes
0 answers
25 views

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 ...
Sunil Agarwal's user avatar
-1 votes
1 answer
58 views

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. ...
line hitch's user avatar
1 vote
2 answers
98 views

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 ...
DigiCoinzTrader's user avatar
0 votes
0 answers
52 views

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, ...
Vicky's user avatar
  • 1
-2 votes
3 answers
117 views

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 ...
Didaka D's user avatar
11 votes
5 answers
799 views

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 = ...
Andrea's user avatar
  • 878
1 vote
3 answers
88 views

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; +---------------------+---------------+ | ...
DB5FP's user avatar
  • 23
0 votes
1 answer
48 views

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 ...
ecerutti's user avatar
  • 111
0 votes
1 answer
98 views

Given a list of tuples, where each tuple consists of 3 integers, transpose the list recursively so that the "rows" and "columns" are swapped. The result will be a list of lists. So ...
Hưng Nguyễn Duy's user avatar
6 votes
2 answers
225 views

In a database containing firm and patent class values, I want to calculate the following variables: Technological abandonment: Number of previously active technological patent classes abandoned ...
lovestacksflow's user avatar
5 votes
5 answers
128 views

I've got a dataset like this: df1 <- data.frame( col1 = c(1, 2, 3), col2 = c(4, 5, 6), col3 = c(2, 8, 9), col4 = c(5, 11, 12), col5 = c(13, 14, 15), col6 = c(16, 17, 18), ...
Hard_Course's user avatar
0 votes
0 answers
30 views

I just want to create a row with 5 buttons. The problem is that the Child of the button is not centered in the widget as shown in photo: https://i.sstatic.net/lQE48lq9.png Code is the following: Row( ...
Soasa's user avatar
  • 83
0 votes
1 answer
65 views

Above is the cell values I want to apply the condition too. A solution that works is to create a new column using the transpose function for the row in Question is to use the cell = cell. I dont want ...
user16977469's user avatar
0 votes
2 answers
123 views

Please need your help. I have an excel file with this following structure, that one row is divided into the next two rows: initial And need finally get this one. Every third row need to be combined ...
user46956's user avatar
0 votes
4 answers
179 views

How to insert a new row every time there is a break in the y column numbering, while filling the other columns with NA? Edit: Iroha's suggestion based on tidyr::complete() works fine, as do the others....
denis's user avatar
  • 972
0 votes
0 answers
54 views

I am using OpenOffice Calc. I have a text which is address range, indirectly used for my calculations. My text is "C5:K5". It may vary at times. I use ROW("C5:K5") and COLUMN("...
Chalam S Chetti's user avatar
0 votes
0 answers
28 views

I use rowClick event in Tabulator (6.3) to perform an row update into a database. The event is fired perfectly for standard elements, but not for list elements: table.on("rowClick", function(...
Ralf's user avatar
  • 1
0 votes
1 answer
26 views

I have been trying to write a macro to exclude rows containing \ in column V. The data I will be working with will have a variable number of rows so I cant specify the last row. I have found various ...
R Pleasance's user avatar
2 votes
3 answers
118 views

I have an R data frame that I need to perform a random binomial draw for each row. The n = argument in the random binomial draw will be based on a value in a column of that row. Further, this ...
geoscience123's user avatar
0 votes
0 answers
29 views

Connection to database import datetime import pymysql conn = pymysql.connect( host='localhost', user='XXXX', #password=, db='golf_db', charset='utf8mb4', cursorclass=pymysql.cursors....
user3147955's user avatar
0 votes
1 answer
135 views

I have two issues on a dataframe: It does not have the correct headers The current headers contain values that should be a "simple" (first) row of the dataframe How do I keep my current ...
Amac's user avatar
  • 61
0 votes
0 answers
12 views

enter image description here image from a part of my spread sheet. how can I divide rows number 35-37 to a single row like 34. In the image for example names and numbers are in wrapped text format but ...
Nader Fallah's user avatar
0 votes
2 answers
104 views

Table contains data about hotel rooms. We can see the same Room available for different date periods - at different Prices. AccmdMenTypeCode - is the Code that shows how many people can stay in this ...
Step's user avatar
  • 13
1 vote
1 answer
104 views

I display a grid, there are two rows in the grid. I have a button called "Copy", when user click on the Copy button, all the data from first row will copied, then paste it into second row. ...
Hung Pham's user avatar
1 vote
0 answers
28 views

I am plotting a 2D heat map as part of my research in python using plt.colormesh() and I am able to get nice plots this way: raw data plot I want to get rid of the bowing (artifact of experimental set ...
def_con's user avatar
  • 11
0 votes
1 answer
72 views

This code isn't mine, it's a free to use one I found on toyhouse, and I wanted to make some edits to fit my preferences. This is what I have: At the bottom there's a horizontal scroll bar (it's grey, ...
Miriana's user avatar
  • 67
2 votes
3 answers
83 views

I have a full width div which contains a dynamic grid of posts. The number of columns depends on the screen width, the number of rows depends on the number of posts. I would like to have an ...
Boris's user avatar
  • 41
0 votes
1 answer
76 views

Good evening, I have data in non-continuous cells in Range A49:A103. I want to count the blank cells in this range (this part is easy as there are lots of examples on the internet on how to do this.) ...
Kala Shah Jahan's user avatar
1 vote
3 answers
54 views

I have data on surgeries, every row represent a patient with a performed surgery. I wish to answer the question: How many procedures has this surgeon performed in the last year (at that time of the ...
Arvid Gustafsson's user avatar
1 vote
1 answer
94 views

So I am currently trying to make an archive bot where you can select characters and get all the information about them. I used buttons for each character. Now I would want to sort the button rows so ...
Phi's user avatar
  • 11
0 votes
1 answer
46 views

I have I want to highlight each row that has a different value to the one above it in a different colour. Makes it easier to view all the category 3, for example, especially when I have lots of ...
frank's user avatar
  • 3,816
2 votes
1 answer
47 views

all Python experts, I'm a Python newbie, stuck with a problem which may look very simple to you. Say I have a data frame of 100 rows, how can I split it into 5 sub-frames, each of which contains the ...
Jasper's user avatar
  • 85
0 votes
1 answer
55 views

I have one header excel file (header.xlsx) with only one row, and one excel table file (station.xlsx) with multiple rows. The aim is to extract first row from (station.xlsx), and then append the ...
Kaiyuan Zheng's user avatar
0 votes
1 answer
61 views

I want to have a drop down list with the name for example calculations, other and with choosing one I can have certain rows hidden on another sheet. Is there an easy way to do that? I tried some codes ...
Evandro Goulart Gomes's user avatar
-2 votes
1 answer
97 views

I have a code for copying rows from a sheet (Parks) to another (Report) in google sheet. It works fine but the problem is, I have 335 rows in sheet 'Parks' and I don't want all of these rows in my ...
Kimiagar's user avatar
0 votes
0 answers
25 views

I am confused about how to get all the matching some value, I went through to all the related post on such topic on stackoverflow, what I have right now should be working, I am unsure either this csv ...
Hamza Ahmed's user avatar
0 votes
1 answer
60 views

Having read several posts on this subject, I have managed to insert data from a multiple select form. However, the data goes into one row. I need each value to go into separate rows. Here is the ...
Ian Young's user avatar
0 votes
1 answer
38 views

I don't know what is wrong with my code, but always shows the < Text > under the < TouchableOpacity >. I tried to change everything in the code without results, nor about others similar ...
rennoib's user avatar
  • 19
1 vote
2 answers
59 views

I have a TextField to enter the year and two RadioListTiles for AD or BC. I would like to have a Row with the TextField first, and then the RadioListTiles stacked after that and in a smaller font ...
TM Lynch's user avatar
  • 504
1 vote
2 answers
83 views

I have a dataframe. I would like group by col1, order by col3 and detect changes from row to row in col2. Here is my example: import pandas as pd import datetime my_df = pd.DataFrame({'col1': ['a', '...
user1700890's user avatar
  • 7,824
2 votes
2 answers
71 views

I have a macro that we use for copying a worksheet into a new workbook. The only issue I am having is that when it copies the worksheet into a new workbook, it copies the hidden columns/rows. What ...
joey's user avatar
  • 47
0 votes
0 answers
834 views

I tried select json_format(cast(COALESCE(array_of_row, array[]) as JSON)) from my table and it appears to work, but the trino documentation says that both JSON type and json_format are considered ...
zyxue's user avatar
  • 9,140
0 votes
1 answer
110 views

I have a table of data where in column 1 I have connected rows 1-5 and in column 2 I have five different values belonging to the value in column 1. Now I want to make a search function, where you can ...
xnface's user avatar
  • 3
0 votes
2 answers
43 views

Row[Image, Text1, Text2, Image] Here Text1 is name, Text2 is ID and Image is fixed size25 and need to display at the end of the row.
subhangi pawar's user avatar

1
2 3 4 5
244