Case function

gbell3587

Board Regular
Joined
Jan 30, 2011
Messages
117
Hi

I know how to use Select..case statements in VBA but i dont know how i can write this into a function so that on any given cell, i can use it to calculate a bunch of scenarios

Can someone help?

Thanks
Graham
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Do you mean a worksheet function or a UDF ?
Give an example of what you want to do.
 
Upvote 0
Do you mean a worksheet function or a UDF ?
Give an example of what you want to do.

Best description is like a premier league table - each team can get either 0,1 or 3 points depending on their result

So if scores are in cell a1 & b1, for c1 - i want to be able to quickly calculate their points tally for that result.

Thansk
Graham
 
Upvote 0
What is the content of A1:C1? Points? Or a score like 5-2?
If a score, how do you know the names of the teams?
 
Last edited:
Upvote 0
So it would look like this

Red team54Blue team
Red team27Blue team
Red team45Blue team
Red team36Blue team
Red team25Blue team
Red team52Blue team

<tbody>
</tbody>


B1 & C1 contain each teams score

In cell E1 to E...whatever the end is, i would like to display the points however theres loads of scenarios for points, so im looking to use a select...case function to determine this and plug in all the scenarios

I know how to write select...case code in VBA, but i dont know how to do this as a function that can be used in a bunch of cells

Thanks
Graham
 
Upvote 0
I'm not sure I follow what you want but if you want the points for each game shown in column E for the Red team and column F for the Blue team, then

Column E : '=IF(B1>C1,3,IF(B1 < C1,0,1))
<c1,0,1))
<c1,0,1))
<c1,0,1))
<c1,0,1))
And a similar formula in column F, or alternatively : =IF(E1=1,1,3-E1)

If instead you want a UDF using Select Case, the syntax would be the same as for a macro.</c1,0,1))></c1,0,1))></c1,0,1))></c1,0,1))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,511
Messages
6,114,054
Members
448,543
Latest member
MartinLarkin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top