Generate series

Hello, I wonder if QuickSight has a function that allows me to generate a series with constant steps. For example, in SQL,

SELECT value
FROM GENERATE_SERIES(1, 50, 5);

The output is
value

1
6
11
16
21
26
31
36
41
46.

Power BI has such a function called generateseries to do the same thing. I wonder if QuickSight can do this as well.

Thanks

No there is no ability in quicksight to do it. But if you use SQL as your dataset you can do it there and join it onto your dataset.

1 Like