IF formula from range

  • Thread starter Thread starter Sharmon
  • Start date Start date
S

Sharmon

Hi, have been breaking my head on this, i think it's simple, but can't seeem
to figure it out:

I have a list of songs. There are three types of songs - fast, medium and
slow.
These have already been categorized and put into columns with headings of F,
M and S.

What i need is, whenever i paste songs into an excel sheet i need the column
after that to show automatically F, M or S using my categorized list as a
reference.

I've tried using IF, but am not able to use it with a range i.e the
categorized columns. Or am i off the mark? Should i convert the list to 3
different databases or something?

Please help... :(
 
Can you explain how you " paste songs into an excel sheet "? If this
is a straight copy/paste then can't you include the "speed" cell at
the same time?

If you want a formula solution, then you would normally use VLOOKUP
for this - check it out in Excel Help.

Hope this helps.

Pete
 
use vlookup

assuming your data is on sheet2!a1:b1000

=vlookup(a1,sheet2!a1:a1000,2,false)

hth
--
regards from Brazil
Thanks in advance for your feedback.
Marcelo



"Sharmon" escreveu:
 
Use a vlookup function
Refering to the cell where the song is being pasted, and returning the value
Fast Medium or slow from the table where it was classified.
Example

A B C
D E

Newsong =vlookup(a1,c1:D1,2,False) Newsong Slow

B1 will return slow
 

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