I am using the following function to create some sequential numbering:
=TEXT(ROW(A1), "W2-0000")
The problem I am having is when I try to change the W2 to H (or some other
letters) the formula no longer works and I get #VALUE!.
Does anyone know what might cause this and how to correct it? It seems like
changing only certain letters create the error.
Jim Thomlinson - 24 Oct 2006 18:11 GMT
Certain letters correspond to specific formatting options. H stand for hour.
Why not just remove the letters something like this...
="W2-" & TEXT(ROW(A1), "0000")

Signature
HTH...
Jim Thomlinson
> I am using the following function to create some sequential numbering:
>
[quoted text clipped - 5 lines]
> Does anyone know what might cause this and how to correct it? It seems like
> changing only certain letters create the error.
Dave F - 24 Oct 2006 18:11 GMT
Interesting.
Replacing W with A, C, works but replacing W with B, D doesn't. Wonder if
that pattern repeats for the entire alphabet.
Dave

Signature
Brevity is the soul of wit.
> I am using the following function to create some sequential numbering:
>
[quoted text clipped - 5 lines]
> Does anyone know what might cause this and how to correct it? It seems like
> changing only certain letters create the error.
Jim Thomlinson - 24 Oct 2006 18:27 GMT
D is Day. B is ???

Signature
HTH...
Jim Thomlinson
> Interesting.
>
[quoted text clipped - 12 lines]
> > Does anyone know what might cause this and how to correct it? It seems like
> > changing only certain letters create the error.
Dave F - 24 Oct 2006 18:44 GMT
I don't know. This is the first time I've seen this...

Signature
Brevity is the soul of wit.
> D is Day. B is ???
>
[quoted text clipped - 14 lines]
> > > Does anyone know what might cause this and how to correct it? It seems like
> > > changing only certain letters create the error.
Bob Phillips - 24 Oct 2006 19:48 GMT
=TEXT(ROW(A1),"\H-0000")

Signature
HTH
Bob Phillips
(replace somewhere in email address with gmail if mailing direct)
> I am using the following function to create some sequential numbering:
>
[quoted text clipped - 5 lines]
> Does anyone know what might cause this and how to correct it? It seems like
> changing only certain letters create the error.