=0&SUMPRODUCT(A1:C1,{10000,100,1})
=0&SUMPRODUCT(A1:A3,{10000;100;1})
Re: Oops! Getting late...
it won't work for me i want to combine the values as text, so when i type in 1 in the cell stands 01
and what in the cell stands that is what i want and not the 1 which i still get
Re: Oops! Getting late...
Herman, I'm not quite sure what you mean!
=0&SUMPRODUCT(A1:A3,{10000;100;1}) does exactly
what you requested when A1:A3 contains {2;3;1}.
Don't get confused by cell formatting. Formulas
don't use the formatted values, but rather the
onesstored internally and viewable in the formula
bar.
Here's what my formula does:
1. Multiples A1 by 10000 producing 20000
2. Multiples A2 by 100 producting 300
3. Multiples A3 by 1 producing 1
4. Sums these values producing 20301
4. Concatenates a leading 0 producing the
text string, "020301"
Believe me -- it works!!!
Re: Oops! Getting late...
Hi Herman
Using your example, this formula will give you the text string:
010203
=TEXT(A1,"0#")&TEXT(A2,"0#")&TEXT(A3,"0#")
Dave
OzGrid Business Applications
...mine does it all with only 1 function call and
1 operator... Herman, I'm not quite sure what you mean! =0&SUMPRODUCT(A1:A3,{10000;100;1}) does exactly