update column

M

markielou

Hopefully someone can help me with this simple task:

I have one column (A) with various text values, and I need to update
column B with the following:
"value in A1" & 1 for row 1
"value in A2" & 2 for row 2
..
..
..
then after row 16 I need it to start over with:
"value in A17" & 1 for row 17
etc... on down to the end of the range

Does anyone know how to do this?

Thanks,
Greg
 
D

Dick Kusleika

Hopefully someone can help me with this simple task:

I have one column (A) with various text values, and I need to update
column B with the following:
"value in A1" & 1 for row 1
"value in A2" & 2 for row 2
.
.
.
then after row 16 I need it to start over with:
"value in A17" & 1 for row 17
etc... on down to the end of the range

=A1&IF(MOD(ROW(),16)=0,16,MOD(ROW(),16))
 
D

Dave Peterson

Another one:

=A1 & MOD(ROW()-1,17)+1

Hopefully someone can help me with this simple task:

I have one column (A) with various text values, and I need to update
column B with the following:
"value in A1" & 1 for row 1
"value in A2" & 2 for row 2
.
.
.
then after row 16 I need it to start over with:
"value in A17" & 1 for row 17
etc... on down to the end of the range

Does anyone know how to do this?

Thanks,
Greg
 
D

Dave Peterson

1 through 16!

=A1 & MOD(ROW()-1,16)+1



Hopefully someone can help me with this simple task:

I have one column (A) with various text values, and I need to update
column B with the following:
"value in A1" & 1 for row 1
"value in A2" & 2 for row 2
.
.
.
then after row 16 I need it to start over with:
"value in A17" & 1 for row 17
etc... on down to the end of the range

Does anyone know how to do this?

Thanks,
Greg
 

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

Similar Threads


Top