I am concatenating 2 objects Object1 and Object2 .with formula =Object1+" -" +Object2 as a variable called “concatenation”.
Now I have to create 2nd variable as
Most of time Object1 can be either 0 or NULL.In that case I have to display Object2 value with “-0”
See the scenario below
Object 1 object 2 Concatenation
12 786 12-786
0 54 54-0
123 123-0
I am trying to write a formula
=If(IsNull([Object1])) Then ([Object2] +’-0’) Else [concatenation].
But it displays date instead of -0 for the blank Object1 but 0 is displayed correct.HOw to make it work as same even when it is blank.
Both Object1 and Object 2 are dimension Objects
Advance Thanks In help
Minne (BOB member since 2004-12-10)