Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I wan to show some column names as a row in new column.
Solved! Go to Solution.
Hi @Anonymous ,
I created some data:
Table:
Here are the steps you can follow:
1. Create calculated column.
You can use NAMEOF() functions to get table and column names:
NAMEOF('Table'[A])
You can use the Mid() function to intercept:
Column =
MID(
NAMEOF('Table'[A]),9,1) &""& MID( NAMEOF('Table'[B]),9,1)
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Anonymous ,
I created some data:
Table:
Here are the steps you can follow:
1. Create calculated column.
You can use NAMEOF() functions to get table and column names:
NAMEOF('Table'[A])
You can use the Mid() function to intercept:
Column =
MID(
NAMEOF('Table'[A]),9,1) &""& MID( NAMEOF('Table'[B]),9,1)
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
NewStep=Table.Unpivot(PreviousStepName,{"ColumnName"},"ColumnName","Value")
User | Count |
---|---|
12 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
27 | |
19 | |
13 | |
11 | |
7 |