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

Print last inputted byte

Hausdorff dimension of the boundary of fibres of Lipschitz maps

What can I do if I am asked to learn different programming languages very frequently?

Maths symbols and unicode-math input inside siunitx commands

Is there a term for accumulated dirt on the outside of your hands and feet?

How do hiring committees for research positions view getting "scooped"?

Violin - Can double stops be played when the strings are not next to each other?

Is honey really a supersaturated solution? Does heating to un-crystalize redissolve it or melt it?

Is it insecure to send a password in a `curl` command?

Writing in a Christian voice

Am I eligible for the Eurail Youth pass? I am 27.5 years old

What is the term when voters “dishonestly” choose something that they do not want to choose?

What does "^L" mean in C?

World War I as a war of liberals against authoritarians?

Why is there so much iron?

Recruiter wants very extensive technical details about all of my previous work

Probably overheated black color SMD pads

How does one measure the Fourier components of a signal?

Can a medieval gyroplane be built?

Bash - pair each line of file

How is the partial sum of a geometric sequence calculated?

Relation between independence and correlation of uniform random variables

Suggestions on how to spend Shaabath (constructively) alone

Optimising a list searching algorithm



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 2 days ago









      battery.cord

      6,94851745




      6,94851745






      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 2 days 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
            2 days ago






          • 1





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

            – m Peixoto
            2 days 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
              2 days ago






            • 1





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

              – m Peixoto
              2 days 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
              2 days ago






            • 1





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

              – m Peixoto
              2 days 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 2 days ago

























            answered 2 days ago









            m Peixotom Peixoto

            576316




            576316












            • 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
              2 days ago






            • 1





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

              – m Peixoto
              2 days 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
              2 days ago






            • 1





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

              – m Peixoto
              2 days 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
            2 days 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
            2 days ago




            1




            1





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

            – m Peixoto
            2 days ago





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

            – m Peixoto
            2 days 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 2 days ago









                battery.cordbattery.cord

                6,94851745




                6,94851745




















                    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

                    Is flight data recorder erased after every flight?When are black boxes used?What protects the location beacon (pinger) of a flight data recorder?Is there anywhere I can pick up raw flight data recorder information?Who legally owns the Flight Data Recorder?Constructing flight recorder dataWhy are FDRs and CVRs still two separate physical devices?What are the data elements shown on the GE235 flight data recorder (FDR) plot?Are CVR and FDR reset after every flight?What is the format of data stored by a Flight Data Recorder?How much data is stored in the flight data recorder per hour in a typical flight of an A380?Is a smart flight data recorder possible?

                    Which is better: GPT or RelGAN for text generation?2019 Community Moderator ElectionWhat is the difference between TextGAN and LM for text generation?GANs (generative adversarial networks) possible for text as well?Generator loss not decreasing- text to image synthesisChoosing a right algorithm for template-based text generationHow should I format input and output for text generation with LSTMsGumbel Softmax vs Vanilla Softmax for GAN trainingWhich neural network to choose for classification from text/speech?NLP text autoencoder that generates text in poetic meterWhat is the interpretation of the expectation notation in the GAN formulation?What is the difference between TextGAN and LM for text generation?How to prepare the data for text generation task

                    Is there a general name for the setup in which payoffs are not known exactly but players try to influence each other's perception of the payoffs?Osborne, Nash equilibria and the correctness of beliefsIs there a name for this family of games (Binomial games?)?Perfect Bayesian EquilibriumCalculating mixed strategy equilibrium in battle of sexesPure Strategy SPNEIs there a commitment mechanism which allows players to achieve pareto optimal solutions?Extensive Form GamesAn $n$-player prisoner's dilemma where a coalition of 2 players is better off defectingTit-For-Stat Strategy Best RepliesPotential solutions of the $n$-player Prisoner's Dilemma