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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Rakesh_508
Frequent Visitor

Number table

Hello All,

 

I would say its a kind of 2 requirements.

 

First one is I do have sales data, I need to show the sales in multiples of 3 like

for first row  mulitple of 3

for second row multiple of 6

for third row multiple of 9 like so on....

 

second requirement is to like, need to generate 3 or any number table in power bi it can be static or dynamic..

 

Need your help on calculating/generating a number table in power bi like 

3*1=3

3*2=6

3*3=9

.

.

.

3*10=30 

 

Hope you got the requirement..

 

Thanks in advance..

1 ACCEPTED SOLUTION

Hi,

It may not be the prettiest way to do it but it works:

Assumptions I used:

- each Sale has a unique ID

- sales have values

- the sales table is called Table

 

So:

1. in Power query, create an Index Column starting at 1

2. then create a new Table as below:

Series = GENERATESERIES(3,COUNTROWS('Table')*3,3)

This will generate a series starting with 3, and it will increment by 3 all the way to how many rows you have in sales.

3. create a calculated Index column in the Series table:

Index = RANKX(Series,Series[Value],,ASC,Dense)

4. in Modeling, create a 1<->1 relationship between the Index in Table and Index in Series

5. in the sales Table, create a new column:

Multiples_3 = 'Table'[Value]*LOOKUPVALUE(Series[Value],Series[Index],'Table'[Index])

 

See below some screenshots.

 

If this solves your problem then please mark it as the solution so others can see it.

 

Series table / Sales data Table

Number table_1.jpgNumber table_2.jpg

 

 

 

View solution in original post

6 REPLIES 6
Khushidesai0109
Helper III
Helper III

Hiii

you can create an indexed column so there you'll get 1,2,3 and soo on as per row
now add a calculated column and multiply that calculated column with 3 and you'll get an output as 3,6,9 and soo on
now create a Dax and multiply sum of sales with that calculated column
you will def get the desired output

if this post helps you out please give thumbs up and accept it as solution!!

Uzi2019
Super User
Super User

hi @Rakesh_508 
can you specify what data do you have ??
or want to generate a complete series that is fixed or it should be dynamic?? 

 

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Hello @Uzi2019 

 

Thanks for the reply..

 

I would say its a kind of 2 requirements.

 

First one is I do have sales data, I need to show the sales in multiples of 3 like

for first row  mulitple of 3

for second row multiple of 6

for third row multiple of 9 like so on....

 

second requirement is to like, need to generate 3 or any number table in power bi it can be static or dynamic..

 

Hope you got the requirement..

 

Thanks in advance..

Sales in Multiples of 3 =
VAR Multiple = sum[Sales]
RETURN Multiple * 3

Is this what you are looking for? if no then please elaborate your requirement

If this helps you please give thumbs up and accept it as solution

Hello @Khushidesai0109 

 

for first row sales, it should be multiple of 3 

for second row sales, its should be multiple of 6

for third row sales, it should be multiple of 9

.

. so on...

Hi,

It may not be the prettiest way to do it but it works:

Assumptions I used:

- each Sale has a unique ID

- sales have values

- the sales table is called Table

 

So:

1. in Power query, create an Index Column starting at 1

2. then create a new Table as below:

Series = GENERATESERIES(3,COUNTROWS('Table')*3,3)

This will generate a series starting with 3, and it will increment by 3 all the way to how many rows you have in sales.

3. create a calculated Index column in the Series table:

Index = RANKX(Series,Series[Value],,ASC,Dense)

4. in Modeling, create a 1<->1 relationship between the Index in Table and Index in Series

5. in the sales Table, create a new column:

Multiples_3 = 'Table'[Value]*LOOKUPVALUE(Series[Value],Series[Index],'Table'[Index])

 

See below some screenshots.

 

If this solves your problem then please mark it as the solution so others can see it.

 

Series table / Sales data Table

Number table_1.jpgNumber table_2.jpg

 

 

 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.