#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default formula question

Hello everyone!
I am a newbie here and this is my 1st question.
I am trying to get this formula going, and I can't figure it our for the
life of me.


A B C D R S
$20.00 4 1
JOB 1
2
JOB 2
3
JOB 3

If I plug a # like 1,2, or 3 according to row R in row A, then job 1, job
2, or job 3 pop up on row "B" depending on the number I plug into row "A".
I hope this makes sense :O)


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default formula question

I think you are getting your rows and columns mixed up.

Do you mean that you want to put a number, n, into column A, and for
"JOB n" to show in the corresponding cell of column B? If so, then try
this in B1:

=IF(A1="","","JOB "&A1)

Copy this down for as many rows as you require.

I'm not sure where columns R and S come into this, though.

Hope this helps.

Pete

On Nov 12, 9:30 pm, GOODCREATIONS
wrote:
Hello everyone!
I am a newbie here and this is my 1st question.
I am trying to get this formula going, and I can't figure it our for the
life of me.

A B C D R S
$20.00 4 1
JOB 1
2
JOB 2
3
JOB 3

If I plug a # like 1,2, or 3 according to row R in row A, then job 1, job
2, or job 3 pop up on row "B" depending on the number I plug into row "A".
I hope this makes sense :O)



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default formula question

I'm sorry my table got dissaligned. column R is the number which is assigned
to each job on the right side (column "S") This is my set table
what I wanted to do was just plug in a number from column "R" into column "A"
and the job corresponding to that number in column "S" would pop up in column
"B" (instead of having to type the entire job description each time it would
pop up in
column "B" after I type just one number

A B C R S
1 CUT LAWN
2 WASHED CAR



So if I plugged in # 2 in cell A1 I would get "washed car" automatically in b1

Thanks so much for your quick response.

"Pete_UK" wrote:

I think you are getting your rows and columns mixed up.

Do you mean that you want to put a number, n, into column A, and for
"JOB n" to show in the corresponding cell of column B? If so, then try
this in B1:

=IF(A1="","","JOB "&A1)

Copy this down for as many rows as you require.

I'm not sure where columns R and S come into this, though.

Hope this helps.

Pete

On Nov 12, 9:30 pm, GOODCREATIONS
wrote:
Hello everyone!
I am a newbie here and this is my 1st question.
I am trying to get this formula going, and I can't figure it our for the
life of me.

A B C D R S
$20.00 4 1
JOB 1
2
JOB 2
3
JOB 3

If I plug a # like 1,2, or 3 according to row R in row A, then job 1, job
2, or job 3 pop up on row "B" depending on the number I plug into row "A".
I hope this makes sense :O)




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default formula question

In that case, try this:

=IF(A1="","",VLOOKUP(A1,R$1:S$10,2,0))

and copy down as required.

I've assumed you have up to 10 jobs defined - adjust the range
references if necessary.

Hope this helps.

Pete

On Nov 12, 11:17 pm, GOODCREATIONS
wrote:
I'm sorry my table got dissaligned. column R is the number which is assigned
to each job on the right side (column "S") This is my set table
what I wanted to do was just plug in a number from column "R" into column "A"
and the job corresponding to that number in column "S" would pop up in column
"B" (instead of having to type the entire job description each time it would
pop up in
column "B" after I type just one number

A B C R S
1 CUT LAWN
2 WASHED CAR

So if I plugged in # 2 in cell A1 I would get "washed car" automatically in b1

Thanks so much for your quick response.



"Pete_UK" wrote:
I think you are getting your rows and columns mixed up.


Do you mean that you want to put a number, n, into column A, and for
"JOB n" to show in the corresponding cell of column B? If so, then try
this in B1:


=IF(A1="","","JOB "&A1)


Copy this down for as many rows as you require.


I'm not sure where columns R and S come into this, though.


Hope this helps.


Pete


On Nov 12, 9:30 pm, GOODCREATIONS
wrote:
Hello everyone!
I am a newbie here and this is my 1st question.
I am trying to get this formula going, and I can't figure it our for the
life of me.


A B C D R S
$20.00 4 1
JOB 1
2
JOB 2
3
JOB 3


If I plug a # like 1,2, or 3 according to row R in row A, then job 1, job
2, or job 3 pop up on row "B" depending on the number I plug into row "A".
I hope this makes sense :O)- Hide quoted text -


- Show quoted text -



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default formula question

Wow Pete,
Thank you so much! It worked like a charm. That was really nice of you.
Thanks again.

"Pete_UK" wrote:

In that case, try this:

=IF(A1="","",VLOOKUP(A1,R$1:S$10,2,0))

and copy down as required.

I've assumed you have up to 10 jobs defined - adjust the range
references if necessary.

Hope this helps.

Pete

On Nov 12, 11:17 pm, GOODCREATIONS
wrote:
I'm sorry my table got dissaligned. column R is the number which is assigned
to each job on the right side (column "S") This is my set table
what I wanted to do was just plug in a number from column "R" into column "A"
and the job corresponding to that number in column "S" would pop up in column
"B" (instead of having to type the entire job description each time it would
pop up in
column "B" after I type just one number

A B C R S
1 CUT LAWN
2 WASHED CAR

So if I plugged in # 2 in cell A1 I would get "washed car" automatically in b1

Thanks so much for your quick response.



"Pete_UK" wrote:
I think you are getting your rows and columns mixed up.


Do you mean that you want to put a number, n, into column A, and for
"JOB n" to show in the corresponding cell of column B? If so, then try
this in B1:


=IF(A1="","","JOB "&A1)


Copy this down for as many rows as you require.


I'm not sure where columns R and S come into this, though.


Hope this helps.


Pete


On Nov 12, 9:30 pm, GOODCREATIONS
wrote:
Hello everyone!
I am a newbie here and this is my 1st question.
I am trying to get this formula going, and I can't figure it our for the
life of me.


A B C D R S
$20.00 4 1
JOB 1
2
JOB 2
3
JOB 3


If I plug a # like 1,2, or 3 according to row R in row A, then job 1, job
2, or job 3 pop up on row "B" depending on the number I plug into row "A".
I hope this makes sense :O)- Hide quoted text -


- Show quoted text -






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default formula question

You're welcome. Looks like your thread got hijacked in the middle.

Pete

On Nov 14, 7:22 am, GOODCREATIONS
wrote:
Wow Pete,
Thank you so much! It worked like a charm. That was really nice of you.
Thanks again.



"Pete_UK" wrote:
In that case, try this:


=IF(A1="","",VLOOKUP(A1,R$1:S$10,2,0))


and copy down as required.


I've assumed you have up to 10 jobs defined - adjust the range
references if necessary.


Hope this helps.


Pete


On Nov 12, 11:17 pm, GOODCREATIONS
wrote:
I'm sorry my table got dissaligned. column R is the number which is assigned
to each job on the right side (column "S") This is my set table
what I wanted to do was just plug in a number from column "R" into column "A"
and the job corresponding to that number in column "S" would pop up in column
"B" (instead of having to type the entire job description each time it would
pop up in
column "B" after I type just one number


A B C R S
1 CUT LAWN
2 WASHED CAR


So if I plugged in # 2 in cell A1 I would get "washed car" automatically in b1


Thanks so much for your quick response.


"Pete_UK" wrote:
I think you are getting your rows and columns mixed up.


Do you mean that you want to put a number, n, into column A, and for
"JOB n" to show in the corresponding cell of column B? If so, then try
this in B1:


=IF(A1="","","JOB "&A1)


Copy this down for as many rows as you require.


I'm not sure where columns R and S come into this, though.


Hope this helps.


Pete


On Nov 12, 9:30 pm, GOODCREATIONS
wrote:
Hello everyone!
I am a newbie here and this is my 1st question.
I am trying to get this formula going, and I can't figure it our for the
life of me.


A B C D R S
$20.00 4 1
JOB 1
2
JOB 2
3
JOB 3


If I plug a # like 1,2, or 3 according to row R in row A, then job 1, job
2, or job 3 pop up on row "B" depending on the number I plug into row "A".
I hope this makes sense :O)- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default formula question

Hijacked? what does this mean?
Should I be worried?


"Pete_UK" wrote:

You're welcome. Looks like your thread got hijacked in the middle.

Pete

On Nov 14, 7:22 am, GOODCREATIONS
wrote:
Wow Pete,
Thank you so much! It worked like a charm. That was really nice of you.
Thanks again.



"Pete_UK" wrote:
In that case, try this:


=IF(A1="","",VLOOKUP(A1,R$1:S$10,2,0))


and copy down as required.


I've assumed you have up to 10 jobs defined - adjust the range
references if necessary.


Hope this helps.


Pete


On Nov 12, 11:17 pm, GOODCREATIONS
wrote:
I'm sorry my table got dissaligned. column R is the number which is assigned
to each job on the right side (column "S") This is my set table
what I wanted to do was just plug in a number from column "R" into column "A"
and the job corresponding to that number in column "S" would pop up in column
"B" (instead of having to type the entire job description each time it would
pop up in
column "B" after I type just one number


A B C R S
1 CUT LAWN
2 WASHED CAR


So if I plugged in # 2 in cell A1 I would get "washed car" automatically in b1


Thanks so much for your quick response.


"Pete_UK" wrote:
I think you are getting your rows and columns mixed up.


Do you mean that you want to put a number, n, into column A, and for
"JOB n" to show in the corresponding cell of column B? If so, then try
this in B1:


=IF(A1="","","JOB "&A1)


Copy this down for as many rows as you require.


I'm not sure where columns R and S come into this, though.


Hope this helps.


Pete


On Nov 12, 9:30 pm, GOODCREATIONS
wrote:
Hello everyone!
I am a newbie here and this is my 1st question.
I am trying to get this formula going, and I can't figure it our for the
life of me.


A B C D R S
$20.00 4 1
JOB 1
2
JOB 2
3
JOB 3


If I plug a # like 1,2, or 3 according to row R in row A, then job 1, job
2, or job 3 pop up on row "B" depending on the number I plug into row "A".
I hope this makes sense :O)- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -




  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default formula question

No, no.

Somebody else asked a question in your thread, rather than starting a
new one. His post was then answered by other people, so the list of
postings looks a bit messy, because you then came back to reply to the
earlier branch.

Nothing to worry about - it's better to keep the postings within the
one thread, that's all.

Pete

On Nov 14, 3:27 pm, GOODCREATIONS
wrote:
Hijacked? what does this mean?
Should I be worried?



"Pete_UK" wrote:
You're welcome. Looks like your thread got hijacked in the middle.


Pete


On Nov 14, 7:22 am, GOODCREATIONS
wrote:
Wow Pete,
Thank you so much! It worked like a charm. That was really nice of you.
Thanks again.


"Pete_UK" wrote:
In that case, try this:


=IF(A1="","",VLOOKUP(A1,R$1:S$10,2,0))


and copy down as required.


I've assumed you have up to 10 jobs defined - adjust the range
references if necessary.


Hope this helps.


Pete


On Nov 12, 11:17 pm, GOODCREATIONS
wrote:
I'm sorry my table got dissaligned. column R is the number which is assigned
to each job on the right side (column "S") This is my set table
what I wanted to do was just plug in a number from column "R" into column "A"
and the job corresponding to that number in column "S" would pop up in column
"B" (instead of having to type the entire job description each time it would
pop up in
column "B" after I type just one number


A B C R S
1 CUT LAWN
2 WASHED CAR


So if I plugged in # 2 in cell A1 I would get "washed car" automatically in b1


Thanks so much for your quick response.


"Pete_UK" wrote:
I think you are getting your rows and columns mixed up.


Do you mean that you want to put a number, n, into column A, and for
"JOB n" to show in the corresponding cell of column B? If so, then try
this in B1:


=IF(A1="","","JOB "&A1)


Copy this down for as many rows as you require.


I'm not sure where columns R and S come into this, though.


Hope this helps.


Pete


On Nov 12, 9:30 pm, GOODCREATIONS
wrote:
Hello everyone!
I am a newbie here and this is my 1st question.
I am trying to get this formula going, and I can't figure it our for the
life of me.


A B C D R S
$20.00 4 1
JOB 1
2
JOB 2
3
JOB 3


If I plug a # like 1,2, or 3 according to row R in row A, then job 1, job
2, or job 3 pop up on row "B" depending on the number I plug into row "A".
I hope this makes sense :O)- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -



  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default formula question

oh o.k L.O.L
Thanks again. :)

"Pete_UK" wrote:

No, no.

Somebody else asked a question in your thread, rather than starting a
new one. His post was then answered by other people, so the list of
postings looks a bit messy, because you then came back to reply to the
earlier branch.

Nothing to worry about - it's better to keep the postings within the
one thread, that's all.

Pete

On Nov 14, 3:27 pm, GOODCREATIONS
wrote:
Hijacked? what does this mean?
Should I be worried?



"Pete_UK" wrote:
You're welcome. Looks like your thread got hijacked in the middle.


Pete


On Nov 14, 7:22 am, GOODCREATIONS
wrote:
Wow Pete,
Thank you so much! It worked like a charm. That was really nice of you.
Thanks again.


"Pete_UK" wrote:
In that case, try this:


=IF(A1="","",VLOOKUP(A1,R$1:S$10,2,0))


and copy down as required.


I've assumed you have up to 10 jobs defined - adjust the range
references if necessary.


Hope this helps.


Pete


On Nov 12, 11:17 pm, GOODCREATIONS
wrote:
I'm sorry my table got dissaligned. column R is the number which is assigned
to each job on the right side (column "S") This is my set table
what I wanted to do was just plug in a number from column "R" into column "A"
and the job corresponding to that number in column "S" would pop up in column
"B" (instead of having to type the entire job description each time it would
pop up in
column "B" after I type just one number


A B C R S
1 CUT LAWN
2 WASHED CAR


So if I plugged in # 2 in cell A1 I would get "washed car" automatically in b1


Thanks so much for your quick response.


"Pete_UK" wrote:
I think you are getting your rows and columns mixed up.


Do you mean that you want to put a number, n, into column A, and for
"JOB n" to show in the corresponding cell of column B? If so, then try
this in B1:


=IF(A1="","","JOB "&A1)


Copy this down for as many rows as you require.


I'm not sure where columns R and S come into this, though.


Hope this helps.


Pete


On Nov 12, 9:30 pm, GOODCREATIONS
wrote:
Hello everyone!
I am a newbie here and this is my 1st question.
I am trying to get this formula going, and I can't figure it our for the
life of me.


A B C D R S
$20.00 4 1
JOB 1
2
JOB 2
3
JOB 3


If I plug a # like 1,2, or 3 according to row R in row A, then job 1, job
2, or job 3 pop up on row "B" depending on the number I plug into row "A".
I hope this makes sense :O)- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -




  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default formula question

That's quite allright - sorry if I "spooked" you!

Pete

On Nov 14, 4:22 pm, GOODCREATIONS
wrote:
oh o.k L.O.L
Thanks again. :)



"Pete_UK" wrote:
No, no.


Somebody else asked a question in your thread, rather than starting a
new one. His post was then answered by other people, so the list of
postings looks a bit messy, because you then came back to reply to the
earlier branch.


Nothing to worry about - it's better to keep the postings within the
one thread, that's all.


Pete


On Nov 14, 3:27 pm, GOODCREATIONS
wrote:
Hijacked? what does this mean?
Should I be worried?


"Pete_UK" wrote:
You're welcome. Looks like your thread got hijacked in the middle.


Pete


On Nov 14, 7:22 am, GOODCREATIONS
wrote:
Wow Pete,
Thank you so much! It worked like a charm. That was really nice of you.
Thanks again.


"Pete_UK" wrote:
In that case, try this:


=IF(A1="","",VLOOKUP(A1,R$1:S$10,2,0))


and copy down as required.


I've assumed you have up to 10 jobs defined - adjust the range
references if necessary.


Hope this helps.


Pete


On Nov 12, 11:17 pm, GOODCREATIONS
wrote:
I'm sorry my table got dissaligned. column R is the number which is assigned
to each job on the right side (column "S") This is my set table
what I wanted to do was just plug in a number from column "R" into column "A"
and the job corresponding to that number in column "S" would pop up in column
"B" (instead of having to type the entire job description each time it would
pop up in
column "B" after I type just one number


A B C R S
1 CUT LAWN
2 WASHED CAR


So if I plugged in # 2 in cell A1 I would get "washed car" automatically in b1


Thanks so much for your quick response.


"Pete_UK" wrote:
I think you are getting your rows and columns mixed up.


Do you mean that you want to put a number, n, into column A, and for
"JOB n" to show in the corresponding cell of column B? If so, then try
this in B1:


=IF(A1="","","JOB "&A1)


Copy this down for as many rows as you require.


I'm not sure where columns R and S come into this, though.


Hope this helps.


Pete


On Nov 12, 9:30 pm, GOODCREATIONS
wrote:
Hello everyone!
I am a newbie here and this is my 1st question.
I am trying to get this formula going, and I can't figure it our for the
life of me.


A B C D R S
$20.00 4 1
JOB 1
2
JOB 2
3
JOB 3


If I plug a # like 1,2, or 3 according to row R in row A, then job 1, job
2, or job 3 pop up on row "B" depending on the number I plug into row "A".
I hope this makes sense :O)- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formula Question casdaq Excel Worksheet Functions 0 May 3rd 07 11:35 PM
formula question DEE Excel Worksheet Functions 2 July 10th 06 05:21 PM
Newbie Question - Subtraction Formula Question [email protected] Excel Discussion (Misc queries) 3 May 5th 06 05:50 PM
formula question fishbio Excel Discussion (Misc queries) 2 January 18th 06 10:39 AM
formula QUESTION Excel Worksheet Functions 2 November 10th 05 12:18 PM


All times are GMT +1. The time now is 11:57 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"