SYNTAX ERROR “)” ON DATE RANGEValidation rule syntaxcan't able to find Error: Syntax error below codeWhy am I receiving a 'Syntax Error' when using a CASE function?Syntax Error on FormulaProcess Builder missing equals sign?Error: Syntax error. Missing ')'Process Builder formula only partially evaluates(Edited version after trying with one of the proposed solutions)Syntax error for validation ruleError: Syntax error. Missing ')' in formulaError: Syntax error. On Custom Field

How to simplify this time periods definition interface?

how to write formula in word in latex

How could a scammer know the apps on my phone / iTunes account?

Use of undefined constant bloginfo

Who is flying the vertibirds?

How Could an Airship Be Repaired Mid-Flight

How to write cleanly even if my character uses expletive language?

Brexit - No Deal Rejection

Why doesn't using two cd commands in bash script execute the second command?

Does Mathematica reuse previous computations?

Do I need to be arrogant to get ahead?

how to draw discrete time diagram in tikz

Gravity magic - How does it work?

Sailing the cryptic seas

Do the common programs (for example: "ls", "cat") in Linux and BSD come from the same source code?

What should tie a collection of short-stories together?

How to explain that I do not want to visit a country due to personal safety concern?

In a future war, an old lady is trying to raise a boy but one of the weapons has made everyone deaf

Why doesn't the EU now just force the UK to choose between referendum and no-deal?

Do I need life insurance if I can cover my own funeral costs?

Should we release the security issues we found in our product as CVE or we can just update those on weekly release notes?

How big is a MODIS 250m pixel in reality?

Co-worker team leader wants to inject his friend's awful software into our development. What should I say to our common boss?

How to use deus ex machina safely?



SYNTAX ERROR “)” ON DATE RANGE


Validation rule syntaxcan't able to find Error: Syntax error below codeWhy am I receiving a 'Syntax Error' when using a CASE function?Syntax Error on FormulaProcess Builder missing equals sign?Error: Syntax error. Missing ')'Process Builder formula only partially evaluates(Edited version after trying with one of the proposed solutions)Syntax error for validation ruleError: Syntax error. Missing ')' in formulaError: Syntax error. On Custom Field













1















I'm trying to segregate records by month name for the first three months of the year. Everything with a date range of 1/1/19 through 1/31/19, should return JAN, for example.



I'm getting syntax errors of a missing parenthesis. Here's what I wrote:



IF(AND(Application__c.CreatedDate>=(2019,1,19),Application__c.CreatedDate<=(2019,1,31)),"JAN",IF(AND(Application__c.CreatedDate<=(2019,2,1),Application__c.CreatedDate<=(2019,2,18)),"FEB",IF(AND(Application__c.CreatedDate>=(2019,3,1),Application__c.CreatedDate<=(2019,3,31)),"MAR","")))









share|improve this question









New contributor




user65727 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    1















    I'm trying to segregate records by month name for the first three months of the year. Everything with a date range of 1/1/19 through 1/31/19, should return JAN, for example.



    I'm getting syntax errors of a missing parenthesis. Here's what I wrote:



    IF(AND(Application__c.CreatedDate>=(2019,1,19),Application__c.CreatedDate<=(2019,1,31)),"JAN",IF(AND(Application__c.CreatedDate<=(2019,2,1),Application__c.CreatedDate<=(2019,2,18)),"FEB",IF(AND(Application__c.CreatedDate>=(2019,3,1),Application__c.CreatedDate<=(2019,3,31)),"MAR","")))









    share|improve this question









    New contributor




    user65727 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      1












      1








      1








      I'm trying to segregate records by month name for the first three months of the year. Everything with a date range of 1/1/19 through 1/31/19, should return JAN, for example.



      I'm getting syntax errors of a missing parenthesis. Here's what I wrote:



      IF(AND(Application__c.CreatedDate>=(2019,1,19),Application__c.CreatedDate<=(2019,1,31)),"JAN",IF(AND(Application__c.CreatedDate<=(2019,2,1),Application__c.CreatedDate<=(2019,2,18)),"FEB",IF(AND(Application__c.CreatedDate>=(2019,3,1),Application__c.CreatedDate<=(2019,3,31)),"MAR","")))









      share|improve this question









      New contributor




      user65727 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I'm trying to segregate records by month name for the first three months of the year. Everything with a date range of 1/1/19 through 1/31/19, should return JAN, for example.



      I'm getting syntax errors of a missing parenthesis. Here's what I wrote:



      IF(AND(Application__c.CreatedDate>=(2019,1,19),Application__c.CreatedDate<=(2019,1,31)),"JAN",IF(AND(Application__c.CreatedDate<=(2019,2,1),Application__c.CreatedDate<=(2019,2,18)),"FEB",IF(AND(Application__c.CreatedDate>=(2019,3,1),Application__c.CreatedDate<=(2019,3,31)),"MAR","")))






      formula syntax






      share|improve this question









      New contributor




      user65727 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question









      New contributor




      user65727 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question








      edited 9 hours ago









      battery.cord

      6,93351745




      6,93351745






      New contributor




      user65727 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 9 hours ago









      user65727user65727

      61




      61




      New contributor




      user65727 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      user65727 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      user65727 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          2 Answers
          2






          active

          oldest

          votes


















          3














          Use a CASE function. Its much easier to write. Also, it will avoid issue in leap year.



          CASE(MONTH(PO_Received_Date__c),
          1, "January",
          2, "February",
          3, "March",
          4, "April",
          5, "May",
          6, "June",
          7, "July",
          8, "August",
          9, "September",
          10, "October",
          11, "November",
          12, "December",
          "None")





          share|improve this answer

























          • Thank you. These are helpful comments. Now I receive an incorrect parameter message: Warning Incorrect parameter type for function 'MONTH()'. Expected Date, received Object

            – user65727
            8 hours ago






          • 1





            the variable that you are using in Month Function is not a date

            – m Peixoto
            8 hours ago


















          1















          Application__c.CreatedDate>=(2019,3,1)




          (2019,3,1) isn't a valid date format. In formulas, to create dates, you need to use the DATE(year,month,day). You can fix your code by adding DATE to your date values.



          Application__c.CreatedDate >= DATE(2019, 3 ,1)



          Issues with your code aside, it makes much more sense to use CASE on the MONTH of the date field instead.






          share|improve this answer






















            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "459"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );






            user65727 is a new contributor. Be nice, and check out our Code of Conduct.









            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f254046%2fsyntax-error-on-date-range%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            3














            Use a CASE function. Its much easier to write. Also, it will avoid issue in leap year.



            CASE(MONTH(PO_Received_Date__c),
            1, "January",
            2, "February",
            3, "March",
            4, "April",
            5, "May",
            6, "June",
            7, "July",
            8, "August",
            9, "September",
            10, "October",
            11, "November",
            12, "December",
            "None")





            share|improve this answer

























            • Thank you. These are helpful comments. Now I receive an incorrect parameter message: Warning Incorrect parameter type for function 'MONTH()'. Expected Date, received Object

              – user65727
              8 hours ago






            • 1





              the variable that you are using in Month Function is not a date

              – m Peixoto
              8 hours ago















            3














            Use a CASE function. Its much easier to write. Also, it will avoid issue in leap year.



            CASE(MONTH(PO_Received_Date__c),
            1, "January",
            2, "February",
            3, "March",
            4, "April",
            5, "May",
            6, "June",
            7, "July",
            8, "August",
            9, "September",
            10, "October",
            11, "November",
            12, "December",
            "None")





            share|improve this answer

























            • Thank you. These are helpful comments. Now I receive an incorrect parameter message: Warning Incorrect parameter type for function 'MONTH()'. Expected Date, received Object

              – user65727
              8 hours ago






            • 1





              the variable that you are using in Month Function is not a date

              – m Peixoto
              8 hours ago













            3












            3








            3







            Use a CASE function. Its much easier to write. Also, it will avoid issue in leap year.



            CASE(MONTH(PO_Received_Date__c),
            1, "January",
            2, "February",
            3, "March",
            4, "April",
            5, "May",
            6, "June",
            7, "July",
            8, "August",
            9, "September",
            10, "October",
            11, "November",
            12, "December",
            "None")





            share|improve this answer















            Use a CASE function. Its much easier to write. Also, it will avoid issue in leap year.



            CASE(MONTH(PO_Received_Date__c),
            1, "January",
            2, "February",
            3, "March",
            4, "April",
            5, "May",
            6, "June",
            7, "July",
            8, "August",
            9, "September",
            10, "October",
            11, "November",
            12, "December",
            "None")






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited 9 hours ago

























            answered 9 hours ago









            m Peixotom Peixoto

            580316




            580316












            • Thank you. These are helpful comments. Now I receive an incorrect parameter message: Warning Incorrect parameter type for function 'MONTH()'. Expected Date, received Object

              – user65727
              8 hours ago






            • 1





              the variable that you are using in Month Function is not a date

              – m Peixoto
              8 hours ago

















            • Thank you. These are helpful comments. Now I receive an incorrect parameter message: Warning Incorrect parameter type for function 'MONTH()'. Expected Date, received Object

              – user65727
              8 hours ago






            • 1





              the variable that you are using in Month Function is not a date

              – m Peixoto
              8 hours ago
















            Thank you. These are helpful comments. Now I receive an incorrect parameter message: Warning Incorrect parameter type for function 'MONTH()'. Expected Date, received Object

            – user65727
            8 hours ago





            Thank you. These are helpful comments. Now I receive an incorrect parameter message: Warning Incorrect parameter type for function 'MONTH()'. Expected Date, received Object

            – user65727
            8 hours ago




            1




            1





            the variable that you are using in Month Function is not a date

            – m Peixoto
            8 hours ago





            the variable that you are using in Month Function is not a date

            – m Peixoto
            8 hours ago













            1















            Application__c.CreatedDate>=(2019,3,1)




            (2019,3,1) isn't a valid date format. In formulas, to create dates, you need to use the DATE(year,month,day). You can fix your code by adding DATE to your date values.



            Application__c.CreatedDate >= DATE(2019, 3 ,1)



            Issues with your code aside, it makes much more sense to use CASE on the MONTH of the date field instead.






            share|improve this answer



























              1















              Application__c.CreatedDate>=(2019,3,1)




              (2019,3,1) isn't a valid date format. In formulas, to create dates, you need to use the DATE(year,month,day). You can fix your code by adding DATE to your date values.



              Application__c.CreatedDate >= DATE(2019, 3 ,1)



              Issues with your code aside, it makes much more sense to use CASE on the MONTH of the date field instead.






              share|improve this answer

























                1












                1








                1








                Application__c.CreatedDate>=(2019,3,1)




                (2019,3,1) isn't a valid date format. In formulas, to create dates, you need to use the DATE(year,month,day). You can fix your code by adding DATE to your date values.



                Application__c.CreatedDate >= DATE(2019, 3 ,1)



                Issues with your code aside, it makes much more sense to use CASE on the MONTH of the date field instead.






                share|improve this answer














                Application__c.CreatedDate>=(2019,3,1)




                (2019,3,1) isn't a valid date format. In formulas, to create dates, you need to use the DATE(year,month,day). You can fix your code by adding DATE to your date values.



                Application__c.CreatedDate >= DATE(2019, 3 ,1)



                Issues with your code aside, it makes much more sense to use CASE on the MONTH of the date field instead.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 9 hours ago









                battery.cordbattery.cord

                6,93351745




                6,93351745




















                    user65727 is a new contributor. Be nice, and check out our Code of Conduct.









                    draft saved

                    draft discarded


















                    user65727 is a new contributor. Be nice, and check out our Code of Conduct.












                    user65727 is a new contributor. Be nice, and check out our Code of Conduct.











                    user65727 is a new contributor. Be nice, and check out our Code of Conduct.














                    Thanks for contributing an answer to Salesforce Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f254046%2fsyntax-error-on-date-range%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    acmart: Multiple authors: all with same affiliation, one author an additional affiliationHow to Write Names of Multiple Authors with Shared Affiliation in ACM 2017 Template?Multiple authors with different primary affiliation, but same additional affiliationSame affiliation for all authors without extra packagesIOS-Book-Article.cls: one author with multiple affiliationacmart: Shared Author AffiliationMultiple authors with different primary affiliation, but same additional affiliationAuthor affiliation with only 1 authorAdding Multiple Authors with Different Affiliation in LaTeX ArticleLaTeX: Multiple authors stays on same lineHow to Label Multiple Authors with Same DescriptionHow to make two authors use the same affiliationTwo authors with same affiliation on finished front page

                    How to write “ä” and other umlauts and accented letters in bibliography?Accents in BibTeXSorting references with special characters alphabeticallyUse ae ligature in bibliographyEastern European nameInverted circumflex in BibTexBibTex, non-ascii initials and nameptr fproblems with accent in LatexHow to add a Ø to my bibliography from Jabref?References without accentsTroubles when trying to cite St“omer-Verlet in ”title" field of a bib entryComprehensive list of accented charactersHow to type the letter “i” with two dots (diaeresis) in math mode?Problem with glossary text and accented lettersSpecial character in bibliographyAccented letters, Unicode and LaTeX accentsHow to stop natbib from modifying bibliography styleCitation of a paper with non-standard characters by BibtexWrite accented characters to file using writeHow to group the bibliography alphabetically, if some surnames start with “accented” characters?How can I automatically capitalize significant words in my bibliography?

                    How to remove border form elements in the last row?Targeting flex items on the last rowHow to vertically wrap content with flexbox?Remove border from IFrameCSS3's border-radius property and border-collapse:collapse don't mix. How can I use border-radius to create a collapsed table with rounded corners?Div width 100% minus fixed amount of pixelsBorder around specific rows in a table?How to remove border (outline) around text/input boxes? (Chrome)How do I remove the space between inline-block elements?Flex-box: Align last row to gridRemove blue border from css custom-styled button in ChromeFill remaining vertical space with CSS using display:flexhow style elements in the last row of flexbox row layout with pure css without js