Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
jerryr125
Creator III
Creator III

Master Item - Dimension - Concatenate two Strings

Hi - I would like to create a Master Dimension of two strings concatenated together.

 

This does not seem to be working :

 

=Concat(matnumber& '-' & matdescr)

 

any thoughts ? Jerry

Labels (1)
1 Solution

Accepted Solutions
dplr-rn
Partner - Master III
Partner - Master III

just do matnumber& '-' & matdescr

 

no need for concat.

concat is aggregation function which will work across rows in a table

View solution in original post

2 Replies
dplr-rn
Partner - Master III
Partner - Master III

just do matnumber& '-' & matdescr

 

no need for concat.

concat is aggregation function which will work across rows in a table

jerryr125
Creator III
Creator III
Author

Perfect - thanks!