You need to sign in to do that
Don't have an account?
thusker
Formula Error -- Help Anyone???
I am trying to do a formula for our markeitng folks to add a field called "Month Lead Created", which will look at the Created Date for Leads and indicate the month that it was created in. Example: Lead created on 1/2/2008 = January. I thought I knew how to build the formula based on another example, but I get an error when I do the syntax check. Can anyone tell me how to fix it so it might work??
Formula is:
CASE(MONTH(CreatedDate) ,
1, "January",
2, "February",
3, "March",
4, "April",
5, "May",
6, "June",
7, "July",
8, "August",
9, "September",
10, "October",
11, "November",
12, "December", " ")
1, "January",
2, "February",
3, "March",
4, "April",
5, "May",
6, "June",
7, "July",
8, "August",
9, "September",
10, "October",
11, "November",
12, "December", " ")
Error: Incorrect parameter for function MONTH(). Expected Date, received DateTime
Hey . . . worked like a charm. THANK YOU!!!!
I'm terrible with formulas . . . but trying to get better. Usually I have some examples that I try to use as "templates" but I get stuck a lot. Thanks for the quick assistance!