Hey you all
I am trying to figure out how to combine two custom properties in one column of the bom. In excel you use an & symbol. I have tried this in SolidWorks and it does not work.
=`DESCRIPTION`&`GRADE`
Thanks in advance for any help
Hey you all
I am trying to figure out how to combine two custom properties in one column of the bom. In excel you use an & symbol. I have tried this in SolidWorks and it does not work.
=`DESCRIPTION`&`GRADE`
Thanks in advance for any help
The long hand function for the & symbol is CONCATENATE. You could try =CONCATENATE('DESCRIPTION','GRADE'). Works in Excel and I believe it is a VBA function, haven't actually tried to use it in Solidworks though.
I got some help on another forum and here is the answer. thank you every one for your help though.
"Quote"
For putting words together, do the same thing but replace the "+" sign with {}. Like this.
`Description`{}`DesignerName`
If you want to add some regular text, just use "".
`Description`{}"Designed By "`DesignerName'
"Quote"
I got some help on another forum and here is the answer. thank you every one for your help though.
"Quote"
For putting words together, do the same thing but replace the "+" sign with {}. Like this.
`Description`{}`DesignerName`
If you want to add some regular text, just use "".
`Description`{}"Designed By "`DesignerName'
"Quote"