This question has been flagged
2 Replies
3632 Views

Friends,

I have 2 fields named "seq_name" & "seq_no"

I want to join it into a "Sequence" field...

Is it possible..

Example:

   If "seq_name"=PPG and "seq_no"=667

i want to show as "Sequence"=PPG 667

Thanks...

Avatar
Discard
Best Answer

Try this,

str(seq_name or '') + " " + str(seq_no or '')

Hop helps

Avatar
Discard
Best Answer

It just easy dude....

sequence = str(seq_name) + " " + str(seq_no)

Avatar
Discard