Formulae with Text

  • Thread starter Thread starter Duncs
  • Start date Start date
D

Duncs

Perhaps not the best subject line, but I'll try and explain what I'm
looking for.

I have a spreadsheet and in column A, listed row after row, will be
the text "REQ", followed by a three digit number. The first entry, in
A2, will be "REQ001" and each subsequent row should increment the
number, so that A3 will hold "REQ002", A4 will hold "REQ003" etc.

There will also be ability the insert new rows, as and when required.
But, rather than typing in REQ...whatever, is there anyway I can get a
formula inserted into the cell, that will put the REQ in for me, and
then put the next three digit number in the sequence after it?

Here's hoping!

TIA

Duncs
 
Duncs said:
Perhaps not the best subject line, but I'll try and explain what I'm
looking for.

I have a spreadsheet and in column A, listed row after row, will be
the text "REQ", followed by a three digit number. The first entry, in
A2, will be "REQ001" and each subsequent row should increment the
number, so that A3 will hold "REQ002", A4 will hold "REQ003" etc.

There will also be ability the insert new rows, as and when required.
But, rather than typing in REQ...whatever, is there anyway I can get a
formula inserted into the cell, that will put the REQ in for me, and
then put the next three digit number in the sequence after it?

Here's hoping!

TIA

Duncs
Hi Duncs

Try Cell/Format/Custom "REQ"@ I'd use it as text, since you probably
won't be doing any calculations with the result...

Beege
 
Assuming that you want Row 11 to show REQ010 and Row 1001 REQ1000 then try:

="REQ"&TEXT(ROW()-1,"000")

in A2 and copy down using the fill handle as required.

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
(e-mail address removed) with @tiscali.co.uk
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top