0
votes
0answers
37 views

VBA - arrayformula to a range stored as array variable

I couldn't find the way to get out of this problem, so please guys give me a hand;) I have to apply a formula array to dynamic ranges in my spreadsheets, which for fixed size ranges works fine using: ...
0
votes
0answers
16 views

evaluate range into variable - formulaarray vs formula

Hi friends of the forum , I am searching the way to evaluate a formula that includes a range into a variable as a "normal" formula and not as a formulaarray, does anyone know the trick for it ? here ...
0
votes
5answers
112 views

Simple PHP stuff : variable evaluation

OK, I'm sorry if this question has been asked before, but I don't know the keyword to search for it. The situation is : $sentence = ' $subject is a genius '; $subject = " Einstein "; echo( $sentence ...
0
votes
1answer
96 views

Why doesn't my properly defined variable evaluate for length correctly (and subsequently work in the rest of my code)?

I employed the answer Marc B suggested and still got nothing in the variable when I echo'd it after the while loop, so I added a few checks to show status of things as they were processed through the ...
-1
votes
1answer
383 views

Evaluate List of ColdFusion Variables

i created a table using coldfusion lists system, rows are months and the columns are cities, and the variable is the sales, now i need to add to every evaluated sale variable, the list of companies ...
1
vote
3answers
573 views

php - convert single quoted string to double quoted

Been searching here and google for over an hour, can't seem to find the answer to this. I have a string returned from a database query which contains variables, however it appears that these strings ...
2
votes
2answers
298 views

Evaluate page & store in variable?

I want to grab a php file, evaluate any php, then store the contents in a variable. We'll call this.. page.php <?php $content = "Hello World."; ?> <html> <head> ...