Forum Discussion

mohsin-raza's avatar
mohsin-raza
Helper III
5 years ago
Solved

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 

 

  

 

  • Anonymous's avatar
    Anonymous
    5 years ago

    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

     

    [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]

     

     

     

2 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    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

     

    [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]