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
mohsin-raza
Helper III
Helper III

Add column values in power query based on Row Number

Hello.

I want to add new column.

The values in the column based rows.

for exemple from R2 to R10 column values are "A" ,from R11 to R20,Values in column are "B" and so on 

 

  

 

1 ACCEPTED SOLUTION
Vera_33
Resident Rockstar
Resident Rockstar

Hi @mohsin-raza 

 

You can utilize Index column, one way to do, if you have a lot of values to add according to the Index, you can utilize a custom function like switch

 

Vera_33_0-1625820815505.png

[a=Number.RoundTowardZero(([Index]-1)/10),
b=if [Index]=1 then null 
else if a =0 then "A" 
else if a=1 then "B" 
else "Unknown"][b]

 

 

 

View solution in original post

2 REPLIES 2
Vera_33
Resident Rockstar
Resident Rockstar

Hi @mohsin-raza 

 

You can utilize Index column, one way to do, if you have a lot of values to add according to the Index, you can utilize a custom function like switch

 

Vera_33_0-1625820815505.png

[a=Number.RoundTowardZero(([Index]-1)/10),
b=if [Index]=1 then null 
else if a =0 then "A" 
else if a=1 then "B" 
else "Unknown"][b]

 

 

 

Thanks @Vera_33 for your nice help.It works . 

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
Top Kudoed Authors