Questions tagged [evaluate]

execution of evaluations of expressions or evaluation functions. Use tag evaluation for rules, algorithms, and strategies of the evaluation.

What is it?

Evaluation is about rules, algorithms and strategies used for the evaluation of expressions or the computation of evaluation functions.

This tag may should be used for the execution of evaluations.

Related tags

  • Prefer the tag if the question is about rules, algorithms and strategies used for the evaluation of expressions or the computation of evaluation functions.
  • For more specific questions use tag

See also:

470 questions
1
vote
1 answer

Protractor ng-if condition and element availability

I want to check whether element displayed or not depends upon ng-if condition,
Discount: {{data.discount}} %
I want to check if data.isDiscount is…
Surendra Jnawali
  • 3,190
  • 5
  • 28
  • 44
1
vote
0 answers

Phantomjs evaluate does not show change to DOM

This is my html file:
Nghi Vo
  • 155
  • 2
  • 12
1
vote
1 answer

Evaluating Greater Than x But Less Than x VBA

I am building an application which must interpret a set of instructions set by the user, instructions which will not be known until runtime. I am achieving this by using the Evaluate function, as so: Evaluate("5>4") Which returns True, as one would…
Jiminy Cricket
  • 1,377
  • 2
  • 15
  • 24
1
vote
1 answer

EXCEL VBA EVALUATE and REPLACE

I need to make Evaluate work for the Replace function. The code is supposed to replace " -0700" with nothing. The code is provided below along with data in column C: Set sh = ThisWorkbook.Sheets(1) Set rangc = sh.Range("c2:c10") For Each area In…
1
vote
2 answers

MS.Internal.Xml.Xpath.XpathSelectionIterator instead of value of text node

Why Am I getting MS.Internal.Xml.Xpath.XpathSelectionIterator instead of the value of a text node on this line of code Dim encoding As New System.Text.UTF8Encoding(True) Dim reader As New System.IO.StreamReader(temparray(0).ToString, encoding) Dim…
mehrlicht
  • 75
  • 1
  • 11
1
vote
1 answer

Java, Evaluating Error

I am coding something. Then, Java is not evaluating it. For example; String[]names={"esma","meral","naci","derya","murat"}; System.out.println("Eleman sayısı:" names.length); for (int i=0; i
1
vote
2 answers

saxon:evaluate with Saxon 9.1.0.7

I have to upadte some scripts to Saxon 9.1.0.7 and I have some trouble with saxon:evaluate. Basicly I have to merge 3 or more XML into one. I did a small sample what happend. this is my xslt:
markus0074
  • 309
  • 1
  • 4
  • 14
1
vote
3 answers

Excel VBA Evaluate Function Wrong When Reference is Not Active Sheet for Named Range

EDITED WITH BETTER EXAMPLE I'm trying to use the Evaluate function to evaluate a formula reference for a named range. However, when using the Evaluate function, if you do not explicitly state the sheet reference along with the cell reference, it…
ptownbro
  • 1,240
  • 3
  • 26
  • 44
1
vote
2 answers

Evaluate symbolic expression in Mathematica for ranges of variables

After some symbolic calculations I have an expression with 5 symbolic variables: expr = f(v1, v2, v3, v4, v5). Each variable is a range of values, e.g.: v1 = Range[1, 15, 1] v2 = Range[0.5, 3, 0.1] ... I would like to evaluate the expression for…
user_185051
  • 426
  • 5
  • 19
1
vote
0 answers

How to evaluate a concatenated formula in Google Sheets?

Is there any way, using script or otherwise, to evaluate a concatenated formula in Google Spreadsheets? I have created a concatenated formula for the Google Finance function to fetch daily exchange rates. This is because my date and currencies keep…
1
vote
1 answer

xPath Evaluate vs XPathNodeIterator

I am searching the fastest way to count some tags in a huge xml-file (120MB) long Quantity; XPathDocument xDocData = new XPathDocument(str_File_path); XPathNavigator xNavData = xDocData.CreateNavigator(); //Option 1 XPathExpression xExp =…
Florian
  • 380
  • 3
  • 20
1
vote
3 answers

count rows before time

i have the following situation. every row has a timestamp when it was written on table. now i want to evaluate per day how many rows have been inserted before 5 am and how many after. how can that be done??
user
  • 157
  • 2
  • 14
1
vote
2 answers

Last Row in Excel VBA Evaluate

I am using the below code: Sub Evaluation_Formula() Dim i As Long With Worksheets("Sheet1") i = .Evaluate("MIN(IF((LEFT($B$1:$B$89,5)*1)=C1,$B$1:$B$89,""""))") .Range("F3").Value2 = i End With End Sub However, the…
StarShines
  • 75
  • 1
  • 2
  • 11
1
vote
3 answers

Evaluate code, differentiating between minus and negative?

I am working on evaluating an expression, and I am running into trouble inputting negative numbers. Due to the structure of my code, and the fact that a subtraction operator and a negative sign are the same character, my code doesn't work for…
Steven T
  • 39
  • 9
1
vote
1 answer

Evaluate a string-expression in XSL

Is there any way to evaluate a string expression in XSL? example: ... ... I realize this…
Jerzakie
  • 115
  • 1
  • 9