View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Rick Rothstein \(MVP - VB\) Rick Rothstein \(MVP - VB\) is offline
external usenet poster
 
Posts: 2,202
Default Trying to get a decimal point using Match command

Your question is not entirely clear to me. Are you saying that in G12 you
have a number (1, 2, 3 or 4) and you want a formula to return a
corresponding value (6, 4.5, 3 or 1.5)? If so, this should work...

=1.5*(5-G12)

Rick


"nynybmbc" wrote in message
...
I am doing a ranking (1,2,3,4) where 1 = 6 points, 2= 4.5 points, 3 = 3
points and a 4 = 1.5 points. Any suggestions on how I can capture the 4.5
and 1.5, I was using the Match function, where
=MATCH(G12,{4,"b",3,2,"e",1},0)