Forum Discussion
mohsin-raza
5 years agoHelper 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
- Anonymous5 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
- AnonymousNot 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]- mohsin-razaHelper III
Thanks Anonymous for your nice help.It works .