Forum Discussion
Lily36876
3 years agoHelper II
Columns Data Reorganization
Hi Guys, I want to brief product name , all data comes from sql server not csv. first three columns data is existing in same table , but product name is too long to show on dashboard, so I want t...
- 3 years ago
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new column.
Ideal Type CC = VAR _newproduct = REPLACE ( Data[Product], 1, LEN ( Data[Brand] ), "" ) RETURN Data[Short Name] & _newproduct
Jihwan_Kim
3 years agoSuper User
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new column.
Ideal Type CC =
VAR _newproduct =
REPLACE ( Data[Product], 1, LEN ( Data[Brand] ), "" )
RETURN
Data[Short Name] & _newproduct
- Lily368763 years agoHelper II
Thanks for reply!! Is really useful for me