Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Concate Function

Status
Not open for further replies.

mur76

Technical User
May 5, 2003
29
0
0
US

Hi,

I need to Concatenate two fields and display the result.
But in between two fields, I need to separate them with :

Here is the example what Iam looking for:


Syntax: Concatenation(Proj_title,tpr_num)

But, I want divide the two atrributes with special character as ":", How Do I get ?
 
Are you trying to do this at the database level? or in a report?

Steve Krandel
VERITAS Software
 
mur76 ?

At the report level, I tend to use & as a concatenation operator.

e.g.
Create a variable with the formula-
Proj_title&" : "&tpr_num

I am assuming that tpr_num is a character field, otherwise you will have to convert it to character using FormatNumber

Regards

Brian



 
=Concatenation(Concatenation(<State> ,":") ,<Store name>)

Example of concatenating State with Storename, in this case both the columns are of same data type...in case if you are concatenating different data type columns then you have convert them to an uniform format and then do the concatenation
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top