Questions tagged [getvalue]

191 questions
0
votes
0 answers

VBA function suing ExecuteExcel4Macro returns VALUE

I am traying to get value from a closed workbook via the following function : Public Function GetValueFromClosedWorkbook(FileName As String, Sheet As String, CellAddress As String) '?GetValueFromClosedWorkbook("C:\temp\excel partners.xlsx", "Excel",…
0
votes
1 answer

how to get value from a range with last row and set value last row in different sheet?

I am trying to getvalue from one sheet and set value in another sheet. But i would like to only get value from L3 to AE lastrow. Setvalue to lastrow from col B in another sheet. Please help. Below script copy everything and paste everything. Please…
0
votes
3 answers

Get value from an "if " statement with multiple conditions

I have an Excel file and I want to extract some values from it whe it finds 7 or 14 or 13 in the following columns: remainingDaysE or remainingDaysG or remainingDaysI I am having the following code in Python: if remainingDaysE == 7 or …
0
votes
3 answers

Radio button value from child to parent component - Angular

I am working with a parent component and a child component. I have two radio buttons, if I select “Change Title” and write a new text , the ’Original Title’ is updated with the new value. And that works fine but how can I do to restore the original…
user9164599
0
votes
1 answer
0
votes
2 answers

C# How to get variable value through concated string?

i am switching from different programing language and i would like to ask if this approach is correct, or if i should use different method. Simple example: I have set of variables with values, and based on user input i want to use concated string to…
Pap_SK
  • 3
  • 1
0
votes
1 answer

Hi i would like to take value for this three keys ('K','O','T')

It is simple probably but I have no idea how to make it. Help The problem is at the end of the code. *****I would like to have a result like this 556668 and I've got like this: [2, 22, 222, 3, 33, 333, 4, 44, 444, 5, 55, 555, 6, 66, 666, 7, 77, 777,…
Pp1
  • 41
  • 3
0
votes
1 answer

Netsuite: Suitescript 2.X: I need help using searches/getValue to populate custom CPN automatically. Cross referencing item and customer to find CPN

Because Netsuite's native CPN does not let people use spaces in the CPN my company made a custom suitescript to use a custom record type for the CPN. The script below is used to cross reference the customer and the item to generate a list of…
0
votes
0 answers

How to display agent's parameters' values in Main (Anylogic simulation)

I am working on an Anylogic model in which I have created an agent with some parameters in the agent window. However, when I call an agent's parameter in Main using agent.parameter I get a value of 0 instead of the actual parameter's value. Please…
0
votes
1 answer

Groovy: Access class.value without calling getValue()

I can't find information about this. I wrote a DataType class and want to return the value property as the default MyInteger{ Integer value MyInteger(Integer iv) { this.value = iv } } How can I get the value without calling…
0
votes
1 answer

How to restrict end date before start date after selected start date in React.JS or in html input type=date""

function App() { let [account, setAccount] = React.useState({ startdate: "", enddate: "", reason: "", leavetype: "", }); function handleChange(e) { let name = e.target.name; let value = e.target.value; …
user18862993
0
votes
0 answers

How can I use 4 different ways of input?

I want to input 4 different values(double, char, string, char[]) and print each values. #include #include using namespace std; int main() { double number; char a; string str; char st[10]; cout << "Put any number : "; …
0
votes
2 answers

How to get the value of the Name of an element inside a JSON object?

I have the following object: var list = { "to do": { key: 99, important: ["example1", "example2"], others: ["example3", "example4"] } }; I want to understand how I can extract the value to do from list. I want to log the value…
Jakob QN
  • 21
  • 3
0
votes
1 answer

How to get values from a specific cell from many Excel files for a new worksheet

I have some Excel files named by date, let's say from "2022-02-01.xlsx" to "2022-02-28.xlsx" How can I get values from a specific cell (e.g.: A1) from all these files for a worksheet (a master files)? I don't want to open these reports. I just want…
0
votes
1 answer

Xamarin IMarkupExtension, Get ViewModel Property Values

Below is a modified implementation of MvxLang. My goal is to be able to implement screen reader text concisely with existing string values stored in .json files in our projects Resources, as well as dynamically generated text…
subwizzll
  • 11
  • 4