Questions tagged [getvalue]
191 questions
0
votes
0 answers
Hashmap getValue() casting issue
friends! I just have one quirked up question, I seem to have an issue with my very last question in my assignment.
I'm not sure how to explain it but for some reason, while getValue() works wonderfully in my for loop, it doesn't connect with my if…

noelle
- 21
- 5
0
votes
1 answer
Get a value after colons and before comma in python
I need to make an API that gets text from a website and a country's name.
Then it tells me if the country's population is going up or down or not changing.
But not i'm stuck at figuring out how to get the population number from such a long…

נתנאל פרץ
- 21
- 3
0
votes
1 answer
getDisplayValue() and getValue() from a cell returns #VALUE! error most of the time
I have modified a script of a punch in/out system by adding a function that grabs a value from AQ1 cell in Schedule_data sheet and places it in E column of Break_data sheet to last empty row along with other data in separate cells.
The problem I'm…

fleiteh
- 1
- 5
0
votes
1 answer
Making a loading animation when pulling data from the web in Tkinter
I pull data from the internet and display it on canvas. A little time passes while the data is being taken, I want to show a loading animation or a progressbar on the canvas. In theory I managed to do it, it should work when progressbar starts…

newfile.py
- 33
- 4
0
votes
1 answer
How to repeat a code for multiple times and store the output of each iteration in the same dataframe?
I am asking two questions:
How to run a code for multiple times?
How to store the output of each iteration in the same dataframe?
I have 3 outputs in my code: mae,rmse and per_metrics. I only want per_metrics for my final output for every…

SssssssAaaaaaa
- 91
- 6
0
votes
1 answer
C# Reflection GetField().GetValue()
Given the following:
List someList;
Where T is a type of some class:
public class Class1
{
public int test1;
}
public class Class2
{
public int test2;
}
How would you use Reflection to extract the values of test1/test2 stored in each…

Palver Preem
- 29
- 6
0
votes
2 answers
Another route to get actual REG_DWORD decimal number from registry in VB.NET?
I have been using GetValue with GetValueKind and have just come across an issue when Reading DWORD that is larger than the signed 32-bit integer. I am able to Write to to the registry without restriction, getting to the max of 4294967295 (ffffffff…

qsNeedAs
- 1
- 3
0
votes
1 answer
MUI Datagrid rendercell getValue return undefined
Since I pushed my code on production, I cant call anymore getValue inside renderCell
Environnement is the same as dev by the way
Here is the columns def:
const columns = [
{
field: 'edit',
headerName: 'Edit',
…

seserize
- 99
- 3
- 8
0
votes
1 answer
Get the value from dart's map
var bob = {
'A': 4,
'B': [4, 5, 6, 7],
'C': 6
};
print(bob['B'][2]);
}
i expect to get 6, but it case error '[]' isn't defined for the class 'Object?'. how to get value from list?

bogdan1992
- 5
- 2
0
votes
1 answer
Search and return data using getRange() and getValue
I am trying to create a sheet (using Google Sheets) for our volunteers to search for, update, and/or add mentoring information (javascript).
I started with the option to search (function onSearch) and it appears to work but the information does not…

Ann
- 9
- 4
0
votes
1 answer
Flutter Error: A value of type 'Future' can't be assigned to a variable of type 'bool' when get value form function Future
I met problem when get value form function Future
I have a function below
Future checkstr(String str) async {
bool result = await check(str);
if (result == null) {
return false;
} else {
return true;
…

Sinh Phan Thien Nhan
- 11
- 3
0
votes
1 answer
tkinter, How to get value from 2D entry widget?
I need to access the value of a 2-d entry, so I use list of lists to contain all of the widgets. The code is shown below. It generates a simple 2x3 array as an experiment. My code can only get value of the first row. Can anybody please help?…

neo
- 3
- 3
0
votes
0 answers
Google sheets .getvalues gives no values
When I run the following script, it gives no data, does anybody knows why?
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheetInput = ss.getSheetByName("Dashboard_Data");
var lastrow = sheetInput.getRange(3, 43).getLastRow();
var wsInput =…

Sietse
- 1
- 1
0
votes
1 answer
Better understanding combox in tkinter-Python - How to get the selected value in tkinter
I'm trying to learn Python and I've been having a hard time trying to understand the following problem:
My goal is to collect the value selected by the user in a combobox. Just below, I put a snippet of the program that I'm putting together.…

Kelevra
- 23
- 3
0
votes
1 answer
getRange.getValue returning wrong date from Google sheets
var sheetdate = activeSheet.getRange(x, y).getValue() I was using this line to read a date from google sheets. Date in sheets is 2021-02-01. But sheetdate is returning value Sun Jan 31 13:30:00 GMT-05:00 2021. Actual output should be Mon Feb 1…