Assignment Operatos | Zoho QEngine Help

Assignment Operators

In a nutshell
Assignment operators in QEngine scripts assign values to variables. They come in two types: the simple assignment and compound assignment operators. The simple assignment operator assigns the value of the right operand to the variable specified in the left operand, while compound assignment operators combine arithmetic operations with assignment in a single step. They are applicable to number, decimal, and string data types.

Overview

Assignment Operators are of two types. Simple assignment operator, and Compound assignment operator.

The simple assignment operator assigns the value of the right operand to the variable (or the field) specified in the left operand.

The following is a simple assignment operator:

(Simple assignment operator. Assigns values from right side operands to left side operand) 

Example:

  1. x = 2;                      // assigns the value 2 to x

Compound assignment operators consist of a binary operator and the simple assignment operator. They perform the operation of the binary operator on both operands and store the result of that operation into the left operand.

The following are compound assignment operators:

+= (Addition assignment operator. It adds the right operand to the left operand and assign the result to the left operand)

Example:

  1. x += 1;                   // is the same as: x = x + 1;

-= (Subtraction assignment operator. It subtracts the right operand from the left operand and assigns the result to the left operand) 

Example:

  1. x -= 1;                    // is the same as: x = x - 1;

*= (Multiplication assignment operator. It multiplies the right operand with the left operand and assigns the result to the left operand) 

Example:

  1. x *= 1;                    // is the same as: x = x * 1;

/= (Division assignment operator. It divides the left operand with the right operand and assigns the result to the left operand)

Example:

  1. x /= 1;                   // is the same as: x = x / 1;

%= (Modulus assignment operator. It takes modulus using two operands and assigns the result to the left operand) 

Example:

  1. x %= 1;                 // is the same as: x = x % 1;

Data types applicable to Assignment Operators

  • The "=" operator supports all datatypes.
  • The "+=" operator supports string, bigint and decimal data types.
  • The rest of the assignment operators support bigint and decimal datatypes.


        Create. Review. Publish.

        Write, edit, collaborate on, and publish documents to different content management platforms.

        Get Started Now


          Access your files securely from anywhere

            Zoho CRM Training Programs

            Learn how to use the best tools for sales force automation and better customer engagement from Zoho's implementation specialists.

            Zoho CRM Training
              Redefine the way you work
              with Zoho Workplace

                Zoho DataPrep Personalized Demo

                If you'd like a personalized walk-through of our data preparation tool, please request a demo and we'll be happy to show you how to get the best out of Zoho DataPrep.

                Zoho CRM Training

                  Create, share, and deliver

                  beautiful slides from anywhere.

                  Get Started Now


                    Zoho Sign now offers specialized one-on-one training for both administrators and developers.

                    BOOK A SESSION







                                Quick LinksWorkflow AutomationData Collection
                                Web FormsEnterpriseOnline Data Collection Tool
                                Embeddable FormsBankingBegin Data Collection
                                Interactive FormsWorkplaceData Collection App
                                CRM FormsCustomer ServiceAccessible Forms
                                Digital FormsMarketingForms for Small Business
                                HTML FormsEducationForms for Enterprise
                                Contact FormsE-commerceForms for any business
                                Lead Generation FormsHealthcareForms for Startups
                                Wordpress FormsCustomer onboardingForms for Small Business
                                No Code FormsConstructionRSVP tool for holidays
                                Free FormsTravelFeatures for Order Forms
                                Prefill FormsNon-Profit

                                Intake FormsLegal
                                Mobile App
                                Form DesignerHR
                                Mobile Forms
                                Card FormsFoodOffline Forms
                                Assign FormsPhotographyMobile Forms Features
                                Translate FormsReal EstateKiosk in Mobile Forms
                                Electronic Forms
                                Drag & drop form builder

                                Notification Emails for FormsAlternativesSecurity & Compliance
                                Holiday FormsGoogle Forms alternative GDPR
                                Form to PDFJotform alternativeHIPAA Forms
                                Email FormsFormstack alternativeEncrypted Forms

                                Wufoo alternativeSecure Forms

                                TypeformWCAG


                                      All-in-one knowledge management and training platform for your employees and customers.

                                                Create. Review. Publish.

                                                Write, edit, collaborate on, and publish documents to different content management platforms.

                                                Get Started Now




                                                                  You are currently viewing the help pages of Qntrl’s earlier version. Click here to view our latest version—Qntrl 3.0's help articles.




                                                                      Manage your brands on social media


                                                                        • Desk Community Learning Series


                                                                        • Digest


                                                                        • Functions


                                                                        • Meetups


                                                                        • Kbase


                                                                        • Resources


                                                                        • Glossary


                                                                        • Desk Marketplace


                                                                        • MVP Corner


                                                                        • Word of the Day


                                                                        • Ask the Experts


                                                                          Zoho Sheet Resources

                                                                           

                                                                              Zoho Forms Resources


                                                                                Secure your business
                                                                                communication with Zoho Mail


                                                                                Mail on the move with
                                                                                Zoho Mail mobile application

                                                                                  Stay on top of your schedule
                                                                                  at all times


                                                                                  Carry your calendar with you
                                                                                  Anytime, anywhere




                                                                                        Zoho Sign Resources

                                                                                          Sign, Paperless!

                                                                                          Sign and send business documents on the go!

                                                                                          Get Started Now




                                                                                                  Zoho TeamInbox Resources





                                                                                                            Zoho DataPrep Demo

                                                                                                            Get a personalized demo or POC

                                                                                                            REGISTER NOW


                                                                                                              Design. Discuss. Deliver.

                                                                                                              Create visually engaging stories with Zoho Show.

                                                                                                              Get Started Now








                                                                                                                                  • Related Articles

                                                                                                                                  • Operators - Overview

                                                                                                                                    An operator, in a programming language, is a symbol that represents an action. It tells the program to perform specific mathematical, relational or logical actions on given values to produce a final result. Operations are usually performed between ...
                                                                                                                                  • Arithmetic Operators

                                                                                                                                    In a nutshell Arithmetic operators perform mathematical operations on numeric values within test scripts. They include addition, subtraction, multiplication, division, and modulus, each applicable to specific data types. The addition operator can ...
                                                                                                                                  • Relational Operators

                                                                                                                                    In a nutshell Relational operators compare two given values and return a boolean result. They are commonly used in conditional statements within QEngine scripts and include operators such as less than, greater than, less than or equal to, greater ...
                                                                                                                                  • Logical Operators

                                                                                                                                    In a nutshell Logical operators evaluate conditions and determine the overall boolean result in QEngine scripts. QEngine supports three logical operators: AND (&&), OR (||), and NOT (!), each with defined precedence rules that affect how combined ...
                                                                                                                                  • Expressions

                                                                                                                                    In a nutshell An expression in QEngine is a combination of constants, variables, operators, or functions that evaluates to produce a single result. Expressions are classified by the data type of the result they produce: boolean, number, decimal, ...
                                                                                                                                    Wherever you are is as good as
                                                                                                                                    your workplace

                                                                                                                                      Resources

                                                                                                                                      Videos

                                                                                                                                      Watch comprehensive videos on features and other important topics that will help you master Zoho CRM.



                                                                                                                                      eBooks

                                                                                                                                      Download free eBooks and access a range of topics to get deeper insight on successfully using Zoho CRM.



                                                                                                                                      Webinars

                                                                                                                                      Sign up for our webinars and learn the Zoho CRM basics, from customization to sales force automation and more.



                                                                                                                                      CRM Tips

                                                                                                                                      Make the most of Zoho CRM with these useful tips.



                                                                                                                                        Zoho Show Resources