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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

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
Community Champion
Community Champion

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
Community Champion
Community Champion

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.