python - How can I specify a CellRange of variable length in DataNitro? -


i creating script , part of requires list of names cell range stored list. need list store many names added cellrange must not store values of empty cells. if use longer range necessary so:

names = cellrange("c10:c99999").value 

then final script iterate through empty values extremely inefficient.

after quite searching through datanitro documentation found .vertical property "returns values of cells starting cell it’s called from, , ending in last non-empty cell in same column." in example mean:

names = cell("c10").vertical 

Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -