Top "Range" questions

A range is an extent of values between its lower and upper bound.

Why does Range work, but not Cells?

I'm trying to move some data from one workbook into another by assigning the values from one range to another. …

vba range cells
Is there a reason that we cannot iterate on "reverse Range" in ruby?

I tried to iterate backwards with using a Range and each: (4..0).each do |i| puts i end ==> 4..0 Iteration through 0..4 …

ruby iteration range
Process a list with a loop, taking 100 elements each time and automatically less than 100 at the end of the list

Is there a way to use a loop that takes the first 100 items in a big list, does something with …

c# list loops range
What is the difference between np.linspace and np.arange?

I have always used np.arange. I recently came across np.linspace. I am wondering what exactly is the difference …

python numpy range linspace
pyspark's "between" function: range search on timestamps is not inclusive

pyspark's 'between' function is not inclusive for timestamp input. For example, if we want all rows between two dates, say, …

python datetime range pyspark between
Convert an entire range to uppercase without looping through all the cells

right now I'm using the following code to convert a list of ticker symbols from lowercase to upper case letters: …

excel vba range uppercase
Set selection by range in Javascript

I want to select text by sending location/anchorOffset and length/offset using Javascript Here is my code var node = …

javascript range textselection
Excel: Named range with VBA

I'm trying to define a named range in Excel using VBA. Basically, I have a variable column number. Then a …

excel list vba range named
Create a random number between -100 and 100 in JavaScript?

Possible Duplicate: Generating random numbers in Javascript I have the following code var randomnumber=Math.floor(Math.random()*101); that generates …

javascript random range negative-number
Dart: create a list from 0 to N

How can I create easily a range of consecutive integers in dart? For example: // throws a syntax error :) var list = [1..10];

list dart range