I have two number fields (year and quarter) I want to concatenate. However, Webi takes the concatenation function and uses it as a mathematical operator:
Data:
FY | FQ |
---|---|
2012 | 1 |
2012 | 2 |
Variable (FYFQ):
=Concatenation([FY];[FQ])
Expected Output:
FY | FQ | FYFQ |
---|---|---|
2012 | 1 | 20121 |
2012 | 2 | 20122 |
However what I got was:
FY | FQ | FYFQ |
---|---|---|
2012 | 1 | 2013 |
2012 | 2 | 2014 |
It seems it took the two Number fields and added them when I wanted them to be concatenated. Should I convert the FY and FQ fields into non-numeric/non-interger strings before I apply the Concatenation() function? How do I do this? I don't see a ToString() function?
Thanks!