Hi, I created a table where first column is a GENERATESERIES.
Now I want to add columns likt this :
Columns with different increment values based on the first generateseries column.
Value | 5series | 10series |
1 | 5 | 10 |
2 | 5 | 10 |
3 | 5 | 10 |
4 | 5 | 10 |
5 | 5 | 10 |
6 | 10 | 10 |
7 | 10 | 10 |
8 | 10 | 10 |
9 | 10 | 10 |
10 | 10 | 10 |
11 | 15 | 20 |
12 | 15 | 20 |
13 | 15 | 20 |
14 | 15 | 20 |
15 | 15 | 20 |
16 | 20 | 20 |
Is here a measure for?
Using an IF condition to create these calculated columns seems not a good solution...
Thanks!
Julie
Solved! Go to Solution.
How about this:
Table TEST =
ADDCOLUMNS (
GENERATESERIES ( 1, 3000, 1 ),
"Series 5", ( QUOTIENT( [Value] - 1, 5 ) + 1 ) * 5,
"Series 10", ( QUOTIENT( [Value] - 1, 10 ) + 1 ) * 10
)
Hi,
Here is one way to do this:
5 series:
Proud to be a Super User!
Hi,
Here is one way to do this:
5 series:
Proud to be a Super User!
How about this:
Table TEST =
ADDCOLUMNS (
GENERATESERIES ( 1, 3000, 1 ),
"Series 5", ( QUOTIENT( [Value] - 1, 5 ) + 1 ) * 5,
"Series 10", ( QUOTIENT( [Value] - 1, 10 ) + 1 ) * 10
)
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
User | Count |
---|---|
133 | |
69 | |
33 | |
27 | |
24 |
User | Count |
---|---|
139 | |
78 | |
39 | |
38 | |
22 |