Hi,
I have an attribute by the number 0821 and similar which I want to add next to another counter attribute that starts on 01 and goes on 02, 03 etc. My attrbute KnKod_1 looses the leading 0 to the left.
See expression in Arithmetic ed. in the pic
Question
Hi,
I have an attribute by the number 0821 and similar which I want to add next to another counter attribute that starts on 01 and goes on 02, 03 etc. My attrbute KnKod_1 looses the leading 0 to the left.
See expression in Arithmetic ed. in the pic
Hi,
I have an attribute by the number 0821 and similar which I want to add next to another counter attribute that starts on 01 and goes on 02, 03 etc. My attrbute KnKod_1 looses the leading 0 to the left.
See expression in Arithmetic ed. in the pic.
Does not seem to work, I added it around just the first @PadLeft(@Value(KnKod_1),1) and also around the whole expression. No errors and no difference in the attribute.
Does not seem to work, I added it around just the first @PadLeft(@Value(KnKod_1),1) and also around the whole expression. No errors and no difference in the attribute.
It should be
@PadLeft(@Value(KnKod_1),6,0)
where '6' is the number of characters you want to have and '0' is the character you want to use.