Limits on Case Statements

  • Thread starter Thread starter Todd Huttenstine
  • Start date Start date
T

Todd Huttenstine

Hey guys

Is there a limit on the amount of cases you can have in a
case statement?


Thanks in advance
Todd
 
What is the function you are aiming for? Depending on that you may b
going about this the wrong way... Just a thought...

In the meantime, like this

Select Case ComboBox1.Value
Case 1
{DoStuff}
...
Case 52
{doStuff}
End Selec
 
If you ask this question, there is probably a better way to do what you
want. No way of knowing, but if there is a definable pattern or a way to
calculate things, it might be advisable.
 
Hey thanx to all who reponded. I ended up making a loop
which was much more practical.
 

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