Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Good Afternoon,
I need to create a series of Case conditions based on the value of a cell on a certain worksheet in my open workbook..For the life of me I cannot get the syntax right and I'd appreciate any help i could get. My condition is on a worksheet named "Lookup_Values" Cell "M3" is a value used as a case condition. what I want to do is retrive that value and use it to compare against each case like below. RPT_Date = ("Lookup_Values!M3") Select Case True Case RPT_Date = "January" Perform my actrions Exit Sub Case RPT_Date = "Febuary" Perform my actrions Exit Sub End Select I appreciate any help in showing me the error of my ways, and again Thank You in advance. George |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Try it this way bit be aware of some pitfalls. The 'test' is case sensitive. I'm assuming you have the text value of January in M3, if it's a properly formatted date then this won't work. To avoid the case issue you could use Select Case ucase(RPT_Date) and in the case statements us JANUARY etc RPT_Date = Sheets("Lookup_Values").Range("M3") Select Case RPT_Date Case Is = "January" ' Perform my actrions Exit Sub Case Is = "Febuary" 'Perform my actrions Exit Sub End Select -- Mike When competing hypotheses are otherwise equal, adopt the hypothesis that introduces the fewest assumptions while still sufficiently answering the question. "George" wrote: Good Afternoon, I need to create a series of Case conditions based on the value of a cell on a certain worksheet in my open workbook..For the life of me I cannot get the syntax right and I'd appreciate any help i could get. My condition is on a worksheet named "Lookup_Values" Cell "M3" is a value used as a case condition. what I want to do is retrive that value and use it to compare against each case like below. RPT_Date = ("Lookup_Values!M3") Select Case True Case RPT_Date = "January" Perform my actrions Exit Sub Case RPT_Date = "Febuary" Perform my actrions Exit Sub End Select I appreciate any help in showing me the error of my ways, and again Thank You in advance. George |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Select Case RPT_Date
Case "January" Perform my actrions Exit Sub Case "Febuary" Perform my actrions Exit Sub End Select -- Hope this helps. If it does, please click the Yes button. Thanks in advance for your feedback. Gary Brown "George" wrote: Good Afternoon, I need to create a series of Case conditions based on the value of a cell on a certain worksheet in my open workbook..For the life of me I cannot get the syntax right and I'd appreciate any help i could get. My condition is on a worksheet named "Lookup_Values" Cell "M3" is a value used as a case condition. what I want to do is retrive that value and use it to compare against each case like below. RPT_Date = ("Lookup_Values!M3") Select Case True Case RPT_Date = "January" Perform my actrions Exit Sub Case RPT_Date = "Febuary" Perform my actrions Exit Sub End Select I appreciate any help in showing me the error of my ways, and again Thank You in advance. George |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hey Guys,
Thanks for the help worked great!!! George "Gary Brown" wrote: Select Case RPT_Date Case "January" Perform my actrions Exit Sub Case "Febuary" Perform my actrions Exit Sub End Select -- Hope this helps. If it does, please click the Yes button. Thanks in advance for your feedback. Gary Brown "George" wrote: Good Afternoon, I need to create a series of Case conditions based on the value of a cell on a certain worksheet in my open workbook..For the life of me I cannot get the syntax right and I'd appreciate any help i could get. My condition is on a worksheet named "Lookup_Values" Cell "M3" is a value used as a case condition. what I want to do is retrive that value and use it to compare against each case like below. RPT_Date = ("Lookup_Values!M3") Select Case True Case RPT_Date = "January" Perform my actrions Exit Sub Case RPT_Date = "Febuary" Perform my actrions Exit Sub End Select I appreciate any help in showing me the error of my ways, and again Thank You in advance. George |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Case Statement Format for getting cell value from a worksheet | Excel Discussion (Misc queries) | |||
Format Cell - Only Upper Case Alpha characters | Excel Discussion (Misc queries) | |||
Format cell to convert to Upper case | Excel Discussion (Misc queries) | |||
how do I format a cell to display its contents in Upper case? | Excel Discussion (Misc queries) | |||
Excel Format Cell - first letter upper case | Excel Programming |