Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
JulieB_
Helper I
Helper I

GENERATESERIES with incrementvalue 1. How to add calculated columns with incrementvalue 5 and 10

Hi, I created a table where first column is a GENERATESERIES. 

2022-01-07_11h49_38.png

Now I want to add columns likt this : 

Columns with different increment values based on the first generateseries column.

Value5series10series
1510
2510
3510
4510
5510
61010
71010
81010
91010
101010
111520
121520
131520
141520
151520
162020

 

Is here a measure for? 
Using an IF condition to create these calculated columns seems not a good solution...

 

Thanks!

Julie

2 ACCEPTED SOLUTIONS
bcdobbs
Super User
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
)


Ben Dobbs

LinkedIn | Twitter | Blog

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

View solution in original post

ValtteriN
Super User
Super User

Hi,

Here is one way to do this:
5 series: 

Column 2 = FLOOR('Table'[Value]+5,5)
10 series:
Column = ROUNDUP('Table'[Value],-1)
I hope this helps and if it does consider accepting this as a solution and giving the post a thumbs up!




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
ValtteriN
Super User
Super User

Hi,

Here is one way to do this:
5 series: 

Column 2 = FLOOR('Table'[Value]+5,5)
10 series:
Column = ROUNDUP('Table'[Value],-1)
I hope this helps and if it does consider accepting this as a solution and giving the post a thumbs up!




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




bcdobbs
Super User
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
)


Ben Dobbs

LinkedIn | Twitter | Blog

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors