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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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