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
)
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
104 | |
58 | |
45 | |
29 | |
24 |
User | Count |
---|---|
133 | |
94 | |
75 | |
44 | |
41 |