22,098 questions
0
votes
1
answer
200
views
PowerApps filter Excel data table
My goal is to have a user input a number in the textinput1 input and select a state from the dropdown1 and hit submit, once they hit submit it filters an excel data table. So if they put 1 in the ...
2
votes
1
answer
102
views
How to reshape a dataframe into wide format with specified column pairs [closed]
I have the following melted sample dataframe:
df_melted <- data.frame(ID = c(21, 21, 21, 21, 49, 49, 49, 49), instance = c(1, 1, 1, 1, 1, 1, 2, 2), variable = c("causeofdeath", "...
1
vote
0
answers
46
views
VB.net Datatable dynamic columns Query with LINQ
I've the same problem as this: VB.net Datatable dynamic columns Query fields with LINQ
I make a query with a dynamic SELECT then I don't know how many columns I'll have. I know only that I'll have the ...
0
votes
1
answer
36
views
PowerApps, Data is written in a wrong way (Patch)
I have this function:
Patch(
participant;
Defaults(participant);
{
Titel: DataCardValue13.Text;
lastName: DataCardValue14.Text;
street: DataCardValue15.Text;
...
0
votes
2
answers
187
views
Find a table based on multiple criteria in Google sheets
I have a google sheets with thousands of table. Here is the link text
In this table I want to find a table based on two value. Such I want to find a table that is include
Fleece & NUMBER 260.
How ...
0
votes
1
answer
37
views
Session datatable getting cleared based on another datatable
I am facing a weird issue in ASP.Net MVC. I am casting a DataTable session variable into another DataTable and when I clear items from second DataTable, they are also getting cleared from Session ...
2
votes
0
answers
58
views
google.visualization.DataTable() - Adding columns Dynamically to the Data Table
I am trying to create Dynamic DataTable for drawing line chart.
This is my Data Structure for Line chart, In my scenario columns will not be same for all users. For example
User - ABC will have
...
0
votes
1
answer
226
views
Filter doesn't work when dynamically added column on primereact DataTable
I'm trying implement dynamic DataTable from PrimeReact, but added new column doesn't have filter data.
On example, there is dropdown and you can add more columns to table, but added column filter ...
1
vote
1
answer
80
views
Serverside dynamically addClass Datatables
NOTE - Datatable serverside processing with MySql database
and the code is as follows
$(document).ready(function(){
var table = $('#userDataList').DataTable({
"processing": true,
...
0
votes
1
answer
57
views
Is there a simple way to get SQL Workbench to only focus on one database?
Through my code I am having to write the database before the table name because otherwise I get an error as it's looking in the wrong database for the table I created. If you look at my code I am ...
0
votes
1
answer
63
views
Serverside dynamically addClass Datatable
NOTE - Datatable serverside processing with MySql database
and the code is as follows
$(document).ready(function(){
var table = $('#userDataList').DataTable({
"processing": true,
...
0
votes
0
answers
31
views
Issue with Updating Entries in Asset_Insert Array
Note: This specific code is being executed on ignition perspective platform, but the problem I am having is more related to logic than platform.
Problem Description:
I'm encountering a problem with ...
0
votes
1
answer
55
views
Data is not getting inserted into proper partition
I have a table with proper partition.
Code snippet:
CREATE TABLE RSA_DBA.RSA_ADHOC_ACCT
(
RSA_ACCT_DTL_GID NUMBER(12,0) NOT NULL,
EFF_DT DATE NOT NULL,
RSA_CMPSN_REC_GID NUMBER(12,0), ...
0
votes
1
answer
31
views
How can I unsearch and go back to original datatable in Flutter?
Following is relevant code snippet:
TextField(
controller: searchController,
onChanged: (value) {
context
...
0
votes
1
answer
57
views
Winforms C# - parse DataTable into existing BufDataGridView binding source
I'm trying to write code that parses through the rows of a CSV and imports them into an existing bufDataGridView binding source named "Test" with columns already named in the binding source. ...
0
votes
1
answer
145
views
Nuxt3 Tanstack table how to set checkbox default value as checked?
I'm now using shadcn datatable with Tanstack table.
I have a checkbox on the first column, but I am confused about how to check all the checkboxes as default.
And also have to select/deselect when ...
0
votes
1
answer
39
views
General Method for auto-generated classes
Context:
I'm working on a .NET C# application in Visual Studio.
I discovered DataSets to interact with my DataBase, so I use TableAdapters. Each Time I add a new TableAdapter associated with a table, ...
0
votes
0
answers
70
views
Angular datatables not refreshing the new data correctly
I am working with Angular datatables in my app and I am showing my list of data I am getting from the service, and I have 3 actions buttons in the UI (showAll - filter check in - filter check out)
at ...
-1
votes
2
answers
497
views
Specify DateTime format in DataTable DateTime column type
While adding columns to DataTable we can specify which type of data the column will hold.
So this will restrict column to hold only valid date time
dataTable.Columns.Add("Date", typeof(...
0
votes
1
answer
72
views
DataColumn.Expression referencing another column
I am importing values from a file to a DataTable and one of the columns is a location column and unfortunately it contains both the latitude and longitude values, which requires me to split them.
...
0
votes
1
answer
385
views
Is there a way to populate a HTML table from a database? (SQL Server, VB.NET, ASP.NET)
I've got a basic HTML table setup in my ASP.NET web portal:
<table ID="MasterTable" width="100%" style="border: 1px solid gray;">
<tr>
<th ...
1
vote
2
answers
63
views
How to categorize table columns by table results and return header as results
I would like to create a table that uses data from another, where the results become the column headers (static) and returns the headers from table 1. As there will be duplicate results in table 1, ...
0
votes
1
answer
307
views
Flutter how to highlight multiple data rows on hover?
Background:
I am currently working on a sticky data table, currently I have two DataTable widget in a Row as shown by the code below.
...Row(
...
1
vote
1
answer
47
views
Omiting Items During Sort in Vuetify Datatable
I want to filter out null values when sorting on the averageScore column of my datatable.
Currently, when sorting on the averageScore column, null values are treated as the lowest value, so they come ...
0
votes
1
answer
907
views
I need to assign just the Item Description column text as a variable in Power Automate Desktop
SQL Query info
I am able to assign the whole row as the description variable with %queryresult[0]% but I want to extract just the info under Item Description for the description. Not sure how I would ...