Hey,
I have a simple question.
I have to numbers and I want to have all numbers in between in a column.
So column A is 15
And column B 20
Now I need a Math / Result Column that says 15,16,17,18,19,20
How to do that?
Thanks!
Andi
Hey,
I have a simple question.
I have to numbers and I want to have all numbers in between in a column.
So column A is 15
And column B 20
Now I need a Math / Result Column that says 15,16,17,18,19,20
How to do that?
Thanks!
Andi
is there a preset number of days to pick from or could the number be infinite?
infinite
Some javascript should do the trick:
function numbersBetween(start, end) {
const numbers = [];
for (let i = start; i <= end; i++) {
numbers.push(i);
}
return numbers.join(",");
}
return numbersBetween(p1, p2);