Forum Discussion
Column data = table name
- 10 years ago
Add table name with your value using "Add Prefix" In Query Editor Window . Then you do the merging.
Eg. Vale = 103, Then Add "Table1" , O/P = Table1103
From the DAX
Create new Column
Value = MID(O/P,7,5) -- 5 give how long max digit u have
Then u change the column datatype as Integer .
It will work.
Anonymous
You need to add the custom column in Query Editor, not under Data tab.
Both tables need to add this table name column, then you can append correctly.
Regards,
Add table name with your value using "Add Prefix" In Query Editor Window . Then you do the merging.
Eg. Vale = 103, Then Add "Table1" , O/P = Table1103
From the DAX
Create new Column
Value = MID(O/P,7,5) -- 5 give how long max digit u have
Then u change the column datatype as Integer .
It will work.