Application Defined error:

Application Defined error:

What does this error mean?

Here's the code where i got that error. (the one in bold was the line where the error registered.)
This code is originally written in excel and migrated it to zoho's version. Also attached in this post is the original excel vba macro.

Here's the link

Zoho

Sub APSMRUN()

    STOCHSW = Application.Range("WPSW")   'Value of stochastic switch
    If STOCHSW = 1 Then Goto JUMP1
    Range("NOW").Select
    Selection.Copy
    Range("START").Select
    ActiveSheet.Paste

JUMP1:
    Call ADELEFIN
    Calculate
    Range("WPST").Select
    Selection.Copy
    Range("WPST1").Select
    ActiveSheet.Paste

Dim NCYCLES As Integer
Dim TMAX As Integer
Dim NCROPS As Integer
Dim NLIVST As Integer
Dim GMA As Integer

    NCYCLES = Application.Range("NCYC")    'x-number of cycles/periods in the simulation
    TMAX = Application.Range("NITR")       'x-maximum number of iterations per cycle
    NCROPS = Application.Range("NC")       '9- number of crops market modeled
    NLIVST = Application.Range("NL")       '6- number of livestock markets modeled
    ZLIMIT = Application.Range("ZTL")
    NCOMM = NCROPS + NLIVST
    GMA = 0
    
    For CYCINDX = 1 To NCYCLES     'This is really the period or year
    
        Range("NPERIOD").Select
        ActiveCell.value = CYCINDX
        
        For ITER = 1 To TMAX

            If ITER > 1 Then Goto AAA:
                Range("PVARDP1").Select
                ActiveCell.Offset(1, 0).Range("A1:H49").Formula = 0
        
            AAA:
            Range("DPG").Select
            ActiveCell.Offset(7, 2).Range("A1").Select
            Range("DPRICES1").Select
            ActiveCell.Offset(ITER, 0).Range("A1").Select
            Let NZERO = 0
            
                For COMMINDX = 1 To NCOMM
                    ActiveCell.Offset(0, 1).Range("A1").Select
                    If Abs(ActiveCell) <= ZLIMIT Then NZERO = NZERO + 1
                Next
                If NZERO = NCOMM Then GoTo RECITERNO
        Next
        MsgBox "No convergence after " & TMAX & " iterations"
        
    RECITERNO:
        Range("NITER").Select
        ActiveCell.value = ITER

        Range("AREA1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("AREAFIN1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste

        Range("YIELD1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("YLDFIN1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste
        
        Range("PRICE1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("PRICEFIN1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste


        Range("DURB1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("DURBFIN1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste
        
        Range("DRUR1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("DRURFIN1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste

        Range("TFOOD1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("TFOODFIN1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste

        Range("TOTD1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("TOTDFIN1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste

        Range("NIMP1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("NIMPFIN1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste

        Range("LCYLD1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("LVCYLD1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste

        Range("LPROD1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("LVPROD1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste

        Range("LPRICE1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("LVPRICE1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste

        Range("LDURB1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("LVDURB1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste

        Range("LDRUR1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("LVPCRUR1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste

        Range("LFOOD1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("LVTFOOD1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste

        Range("LTOTD1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("LVTDEM1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste

        Range("LNIMP1").Select
        ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
        Range("LVNIMP1").Select        
        ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
        ActiveSheet.Paste

    Next
        STOCHSW = Application.Range("WPSW")   'Value of stochastic switch
        If STOCHSW = 1 Then Goto JUMP2
        Range("NOW").Select
        Selection.Copy
        Range("END").Select
        ActiveSheet.Paste
    
        SIMELAPSED = Application.Range("ELAPSED")
        MsgBox "Simulation Run Completed, " & SIMELAPSED & " ELAPSED "
        Range("DATERUN").Select
        Selection.Copy
        Range("RUNDATE").Select
        ActiveSheet.Paste
    
    JUMP2:
    Range("OPTIONS").Select
    
End Sub

Excel

Sub APSMRUN()
'
' APSMRUN Macro recorded 11/13/2003, 07/23/2004 by Tirso B. Paris, Jr.
' This macro integrates all the individual routines
'
'  Copy contents of previous simulation run to another area in the worksheet
'       for comparison with current simulation
'    Run ("CopySimRes")
'      MsgBox "Previous simulation results copied safely"
'  Delete the contents of previous final tables to make way for a new simulation.
'
    STOCHSW = Application.Range("WPSW")   'Value of stochastic switch
    If STOCHSW = 1 Then GoTo JUMP1
    Application.Goto Reference:="NOW"
    Selection.Copy
    Application.Goto Reference:="START"
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
'
JUMP1:
    Run ("ADELEFIN")
    Calculate
    Application.Goto Reference:="WPST"
    Selection.Copy
    Application.Goto Reference:="WPST1"
    Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
        xlNone, SkipBlanks:=False, Transpose:=False
'
'
'*      MsgBox "Final worksheets deleted"
'
'   Set levels of policy variables and exogenous variables for entire
'       simulation period. Note that at this stage the system is not
'       yet subject to exogenous shocks.
'
Dim NCYCLES As Integer
Dim TMAX As Integer
Dim NCROPS As Integer
Dim NLIVST As Integer
Dim GMA As Integer


'  Initialize variables
'
    NCYCLES = Application.Range("NCYC")    '20-number of cycles/periods in the simulation
    TMAX = Application.Range("NITR")       '50-maximum number of iterations per cycle
    NCROPS = Application.Range("NC")       '9- number of crops market modeled
    NLIVST = Application.Range("NL")       '6- number of livestock markets modeled
    ZLIMIT = Application.Range("ZTL")
    NCOMM = NCROPS + NLIVST
    GMA = 0
    
'
'  In the following,
'  CYCINDX is the index for cycles (periods or years)
'  ITER is the index for ITERATIONS
'  K is the index for counting
'
    For CYCINDX = 1 To NCYCLES     'This is really the period or year
    
        Application.Goto Reference:="NPERIOD"
        ActiveCell = CYCINDX
        
 
'   Start of iterative routine to determine endogenously
'   equilibrium values.
    For ITER = 1 To TMAX
 '  Shock system in the first iteration
        If ITER > 1 Then GoTo AAA:

'   This is the portion that assigns zero to the rest of table.
    Application.Goto Reference:="PVARDP1"
    ActiveCell.Offset(1, 0).Range("A1:H49").Formula = 0
        
AAA:
'   At this stage, all values of
'   state variables (for TMAX iterations) are computed using
'   the initial shock values (policy variable changes).
'   The following routine simply determines the iteration number
'   wherein all crop and livestock markets have cleared.
    
'
        Application.Goto Reference:="DPG"
        ActiveCell.Offset(7, 2).Range("A1").Select
        Application.Goto Reference:="DPRICES1"
        ActiveCell.Offset(ITER, 0).Range("A1").Select
            Let NZERO = 0
            For COMMINDX = 1 To NCOMM
                ActiveCell.Offset(0, 1).Range("A1").Select
                If Abs(ActiveCell) <= ZLIMIT Then NZERO = NZERO + 1
            Next
        If NZERO = NCOMM Then GoTo RECITERNO
    Next
        MsgBox "No convergence after " & TMAX & " iterations"
        
RECITERNO:
    Application.Goto Reference:="NITER"
    ActiveCell = ITER
'   MsgBox "Convergence achieved after " & ITER & " iterations!"
'
'   Variable = Crop Area
    Application.Goto Reference:="AREA1"
    ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
    Application.Goto Reference:="AREAFIN1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
'
'   Variable = Crop Yield
    Application.Goto Reference:="YIELD1"
    ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
    Application.Goto Reference:="YLDFIN1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
    
'   Variable = Crop Price
    Application.Goto Reference:="PRICE1"
    ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
    Application.Goto Reference:="PRICEFIN1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
'
'   Variable = Crop Urban Demand
    Application.Goto Reference:="DURB1"
    ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
    Application.Goto Reference:="DURBFIN1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
'
'   Variable = Crop Rural Demand
    Application.Goto Reference:="DRUR1"
    ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
    Application.Goto Reference:="DRURFIN1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
'
'   Variable = Total Food Crop Demand
    Application.Goto Reference:="TFOOD1"
    ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
    Application.Goto Reference:="TFOODFIN1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
 '
'   Variable = Total Crop Demand
    Application.Goto Reference:="TOTD1"
    ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
    Application.Goto Reference:="TOTDFIN1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
'
'   Variable = Net Imports - Crops
    Application.Goto Reference:="NIMP1"
    ActiveCell.Offset(ITER, 0).Range("A1:I1").Copy
    Application.Goto Reference:="NIMPFIN1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
'
' FOR LIVESTOCK
'   Variable = CARCASS Yield
    Application.Goto Reference:="LCYLD1"
    ActiveCell.Offset(ITER, 0).Range("A1:F1").Copy
    Application.Goto Reference:="LVCYLD1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
    
'   Variable = MEAT PRODUCTION
    Application.Goto Reference:="LPROD1"
    ActiveCell.Offset(ITER, 0).Range("A1:F1").Copy
    Application.Goto Reference:="LVPROD1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
    
'   Variable = MEAT Price
    Application.Goto Reference:="LPRICE1"
    ActiveCell.Offset(ITER, 0).Range("A1:F1").Copy
    Application.Goto Reference:="LVPRICE1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
'
'   Variable = MEAT Urban Demand
    Application.Goto Reference:="LDURB1"
    ActiveCell.Offset(ITER, 0).Range("A1:F1").Copy
    Application.Goto Reference:="LVPCURB1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
'
'   Variable = MEAT Rural Demand
    Application.Goto Reference:="LDRUR1"
    ActiveCell.Offset(ITER, 0).Range("A1:F1").Copy
    Application.Goto Reference:="LVPCRUR1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
'
'   Variable = Total MEAT FOOD Demand
    Application.Goto Reference:="LFOOD1"
    ActiveCell.Offset(ITER, 0).Range("A1:F1").Copy
    Application.Goto Reference:="LVTFOOD1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
 '
'   Variable = Total MEAT Demand
    Application.Goto Reference:="LTOTD1"
    ActiveCell.Offset(ITER, 0).Range("A1:F1").Copy
    Application.Goto Reference:="LVTDEM1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
'
'   Variable = Net Imports - MEAT
    Application.Goto Reference:="LNIMP1"
    ActiveCell.Offset(ITER, 0).Range("A1:F1").Copy
    Application.Goto Reference:="LVNIMP1"
    ActiveCell.Offset(CYCINDX - 1, 0).Range("A1").Select
    Selection.PasteSpecial Paste:=xlValues
Next
    STOCHSW = Application.Range("WPSW")   'Value of stochastic switch
    If STOCHSW = 1 Then GoTo JUMP2
    Application.Goto Reference:="NOW"
    Selection.Copy
    Application.Goto Reference:="END"
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    SIMELAPSED = Application.Range("ELAPSED")
    MsgBox "Simulation Run Completed, " & SIMELAPSED & " ELAPSED "
    Application.Goto Reference:="DATERUN"
    Selection.Copy
    Application.Goto Reference:="RUNDATE"
    Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
        xlNone, SkipBlanks:=False, Transpose:=False
JUMP2:
    Application.Goto Reference:="OPTIONS"
    
End Sub

Thanks for the help :)

    Access your files securely from anywhere

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






                              Zoho Developer Community




                                                    • Desk Community Learning Series


                                                    • Digest


                                                    • Functions


                                                    • Meetups


                                                    • Kbase


                                                    • Resources


                                                    • Glossary


                                                    • Desk Marketplace


                                                    • MVP Corner


                                                    • Word of the Day


                                                    • Ask the Experts



                                                              • Sticky Posts

                                                              • Introducing a smarter, faster, and more flexible charting experience

                                                                Hello Zoho Sheet users, We're delighted to share the latest news about a major update to charts in Zoho Sheet! The new version supports dynamic data ranges, granular styling options, faster loading, and other interesting enhancements that allow you to
                                                              • What's new in Zoho Sheet: Simplify data entry and collaboration

                                                                Hello, Zoho Sheet community! Last year, our team was focused on research and development so we could deliver updates that enhance your spreadsheet experience. This year, we’re excited to deliver those enhancements—but we'll be rolling them out incrementally
                                                              • New Features: Repeat Last Action, Insert Cut/Copied Rows/Columns and Hyperlink

                                                                You might have noticed the constant updates to Zoho Sheet of late. Here are 3 more features that have been added to Zoho Sheet recently: F4 - Repeat Last Action Insert Cut/Copied Rows and Columns Insert Hyperlink Here is a screen cast demonstrating each of these features. Read further below to learn more about these new features. F4 - Repeat Last Action: You can now repeat the last action you made on your spreadsheet by using the keyboard shortcut, F4. It is quite handy and helps you get your work
                                                              • Introducing Forms in Zoho Sheet

                                                                We hereby bring you the power of ​forms in Zoho Sheet. ​Now, build and create your own customized forms using Zoho Sheet. Be it compiling a questionnaire or rolling out a survey, Zoho Sheet can do it all for you. Forms is an excellent feature that helps you collect information in the simplest of ways and having it in Zoho Sheet takes it a notch higher. Build Simple yet Powerful forms Building forms using Zoho Sheet is fairly simple. The exclusive 'Form' tab lets you create one quickly. Whether you
                                                              • Slicers are now available in Zoho Sheet—filter your data interactively

                                                                At Zoho Sheet, we diligently track user requests and feedback. In line with this, based on extensive user requests, we've integrated Slicers to pivot tables and are delighted to announce its release. Slicers are interactive visual filters that have add,


                                                              Manage your brands on social media



                                                                    Zoho TeamInbox Resources



                                                                        Zoho CRM Plus Resources

                                                                          Zoho Books Resources


                                                                            Zoho Subscriptions Resources

                                                                              Zoho Projects Resources


                                                                                Zoho Sprints Resources


                                                                                  Qntrl Resources


                                                                                    Zoho Creator Resources



                                                                                        Zoho CRM Resources

                                                                                        • CRM Community Learning Series

                                                                                          CRM Community Learning Series


                                                                                        • Kaizen

                                                                                          Kaizen

                                                                                        • Functions

                                                                                          Functions

                                                                                        • Meetups

                                                                                          Meetups

                                                                                        • Kbase

                                                                                          Kbase

                                                                                        • Resources

                                                                                          Resources

                                                                                        • Digest

                                                                                          Digest

                                                                                        • CRM Marketplace

                                                                                          CRM Marketplace

                                                                                        • MVP Corner

                                                                                          MVP Corner









                                                                                            Design. Discuss. Deliver.

                                                                                            Create visually engaging stories with Zoho Show.

                                                                                            Get Started Now


                                                                                              Zoho Show Resources

                                                                                                Zoho Writer

                                                                                                Get Started. Write Away!

                                                                                                Writer is a powerful online word processor, designed for collaborative work.

                                                                                                  Zoho CRM コンテンツ




                                                                                                    Nederlandse Hulpbronnen


                                                                                                        ご検討中の方




                                                                                                                • Recent Topics

                                                                                                                • is it possible to add more than one Whatsapp Phone Number to be integrated to Zoho CRM?

                                                                                                                  so I have successfully added one Whatsapp number like this from this User Interface it seems I can't add a new Whatsapp Number. I need to add a new Whatsapp Number so I can control the lead assignment if a chat sent to Whatsapp Phone Number 1 then assign
                                                                                                                • Can’t find fsm in zoho one

                                                                                                                  Every other app is available to me in Zoho one except fsm
                                                                                                                • Posibility to add Emoticons on the Email Subject of Templates

                                                                                                                  Hi I´ve tried to add Emoticons on the Subject line of Email templates, the emoticon image does show up before saving the template or if I add the Emoticon while sending an Individual email and placing it manually on the subject line. Emoticons also show
                                                                                                                • Task Deletion Restriction & Strict Stage Control

                                                                                                                  Hello Zoho Community, We have the following two issues currently pending and under testing, for which we require a workable and reliable solution: 1. Task Deletion Restriction We are testing ways to ensure that staff users are not able to delete tasks
                                                                                                                • Unable to mass update a picklist field

                                                                                                                  Hello, I have the records within our Accounts module divided between two account types: Parent Accounts & Member Accounts. I am attempting to mass update accounts from one picklist value to the other (within other specific criteria in our custom fields)
                                                                                                                • Process checklist in CRM

                                                                                                                  Hi We've created a new sales process that I'm mapping into the CRM - issue I have is that some of the tasks / milestones I would like to capture require very simple tick box responses but there are quite a few under a variety of sub categories so I don't
                                                                                                                • CRM project association via deluge

                                                                                                                  I have created a workflow in my Zoho CRM for closing a deal. Part of this workflow leverages a deluge script to create a project for our delivery team. Creating the project works great however, after or during the project creation, I would like to associate
                                                                                                                • This user is not allowed to add in Zoho. Please contact support-as@zohocorp.com for further details

                                                                                                                  Hi Team, when I,m trying to create a email account (imagixmidia.com.br) it's showing this error >>  This user is not allowed to add in Zoho. Please contact support-as@zohocorp.com for further details plz help me  thanks
                                                                                                                • How to manage task lists in Zoho Desk?

                                                                                                                  Hello, I use Zoho Desk for IT customer support. I have a list of standard operating procedures (SOPs), including SOPs for onboarding new users, offboarding users, losing a device, etc. These are lists of tasks to be performed depending on the situation.
                                                                                                                • Zoho Books' 2025 Wrapped

                                                                                                                  Before we turn the page to a new year, it’s time to revisit the updates that made financial management simpler and more intuitive. This annual roundup brings together the most impactful features and enhancements we delivered in 2025, offering a clear
                                                                                                                • Activating Zobot instead of chat

                                                                                                                  Hi folks, I know this will be obvious, but I have not been able to locate the details on this via google or youtube. We've had SalesIQ life chat set up for a while now and it is working perfectly. I have just finished development of a Zobot (using codeless)
                                                                                                                • Adding a new section to the related details sidebar when creating a new ticket.

                                                                                                                  Hello, I was wondering if you can add a new section to the related details sidebar when creating a new ticket. I was wanting to have it to where it also shows the account information related to the contact chosen as well. This is the section I am referring
                                                                                                                • Displaying only unread tickets in ticket view

                                                                                                                  Hello, I was wondering if someone might be able to help me with this one. We use filters to display our ticket list, typically using a saved filter which displays the tickets which are overdue or due today. What I'd really like is another filter that
                                                                                                                • Is Zoho Shifts included in the Zoho One plan?

                                                                                                                  In case the answer is no: there's any plan to make it available via One? Thank you
                                                                                                                • Zoho Tracking Image location

                                                                                                                  So we've been having an issue with tracking email opens. Specifically in Gmail. Our emails are not that long either, maybe 4 sections of image/250 characters of text/button per section.  But all my test accounts I used via Gmail we're showing opens. But then come to find out the tracking image is at the very bottom of the email. So If the message is clipped (It always just clips our social icons on the bottom) and the user doesn't click the show more button it never tracks the open.  Looking at other
                                                                                                                • Creating an invoice to be paid in two installments?

                                                                                                                  Hi there, I own a small Photographic Services business and have not been able to find a way to fit my billing system into Zoho, or any other Accounting software. The way my payments work is: 1. Customer pays 50% of total price of service to secure their
                                                                                                                • Zoho Tables is now live in Australia & New Zealand!

                                                                                                                  Hey everyone! We’ve got some great news to share — Zoho Tables is now officially available in the Australian Data Center serving users across Australia and New Zealand regions! Yes, it took us a bit longer to get here, but this version of Zoho Tables
                                                                                                                • Delivery and handling of documents e-stamped using Zoho Sign

                                                                                                                  Hello everyone! Zoho Sign makes it easy to pay non judicial stamp duty online and automatically attach the digitally generated e-stamp challan to electronic documents. We also manage the delivery of physical e-stamped papers. We periodically receive these
                                                                                                                • Introducing Dedicated Modules for Plans, Addons, and Coupons in Zoho Billing

                                                                                                                  We’ve enhanced the way you manage Plans, Addons, and Coupons in Zoho Billing. Previously, all three grouped together under Subscription Items. Now, each one has its own dedicated module, giving you a cleaner and more intuitive experience. This update
                                                                                                                • Sortie de Zoho TABLE ??

                                                                                                                  Bonjour, Depuis bientôt 2 ans l'application zoho table est sortie en dehors de l'UE ? Depuis un an elle est annoncée en Europe Mais en vrai, c'est pour quand exactement ??
                                                                                                                • Drop Down Value

                                                                                                                  Hi, May I know why Zoho Flow treat this drop down as number and not as string. If so, how can I fetch the right value for filtering. This field is from Creator, in Creator upon checking by default it is a string since it's not a lookup field.
                                                                                                                • Zoho CRM's mobile apps: A 2025 Recap

                                                                                                                  2025 marked a year of steady progress for Zoho CRM's mobile apps. We rolled out several updates and features to improve usability and make everyday CRM work a lot easier to manage. Here’s a look back at some of the key releases from 2025. Android releases
                                                                                                                • Facebook follower count doesn't match FB Analytics

                                                                                                                  Hi all, I am wondering if anyone else has issues with follower counts for Facebook not matching FB's native analytics tool. On the Zoho dashboard, it's showing 1,007, but FB shows 1,060. All the other channels match up. Any insights are much appreciated!
                                                                                                                • Meta and Facebook data report discrepancy

                                                                                                                  I have been currently gathering manually facebook follower data thru meta. In zoho marketing plus the social media reporting only allows for page likes, and so there is a discrepancy with the data. please the difference in files attached. Is there way
                                                                                                                • Unlocking New Levels: Zoho Payroll's Journey in 2025

                                                                                                                  Every year brings its own set of challenges and opportunities to rethink how payroll works across regulations and teams. In 2025, Zoho Payroll continued to evolve with one clear focus: giving businesses more flexibility, clarity, and control as they grow.
                                                                                                                • Can I export all attachments from Zoho CRM?

                                                                                                                  Can I export all attachments from Zoho CRM?
                                                                                                                • Community Digest — Noviembre y Diciembre 2025

                                                                                                                  ¡Hola, Comunidad de Zoho en Español! Cerramos el año de la mejor forma con nuestro último Community Digest de 2025, donde podrás encontrar las últimas novedades de nuestros productos. ¿Todo listo para empezar 2026 con el mejor pie? ¡Vamos a ello! Zoho
                                                                                                                • Zoho Projects Plus’ 2025- the year we launched

                                                                                                                  We’ve been building project management tools for the past 19 years, and a question we often hear is: Different teams in our organization prefer different project management methods; while the development team prefers agile, the marketing and sales teams
                                                                                                                • How do you print a refund check to customer?

                                                                                                                  Maybe this is a dumb question, but how does anyone print a refund check to a customer? We cant find anywhere to either just print a check and pick a customer, or where to do so from a credit note.
                                                                                                                • Company Multiple Branch/ Location Accounting

                                                                                                                  Hi All, anyone know whether company can maintain their multiple Branch Accounting in Zoho  Books. It will be chart of Accounts & Master Data will be same but different report available as per per Branch. Thanks & regards, Vivek +91 9766906737
                                                                                                                • Zoho Books Invoices Templates

                                                                                                                  It would be really helpful to have more advanced features to customise the invoice templates in Zoho Books. Especially I´m thinking of the spacing of the different parts of the invoice (Address line etc.). If you have a sender and receiver address in
                                                                                                                • Email Administrators! Join our tips & troubleshooting series

                                                                                                                  Greetings to all the admins out there! This announcement is exclusively for you. As we step into the New Year, we’re excited to start a dedicated series of admin-specific tips curated to support you. These posts will help you overcome everyday challenges
                                                                                                                • Free Webinar : Unlock AI driven business insights with Zoho Inventory + Zoho Analytics

                                                                                                                  Are you tired of switching between apps and exporting data to build customized reports? Say hello to smarter & streamlined insights! Join us for this exclusive webinar where we explore the power of the Zoho Inventory–Zoho Analytics integration. Learn
                                                                                                                • Import Function: ONLY update empty fields

                                                                                                                  When setting up an import from a spreadsheet to CRM, there is a checkbox "Don't update empty values for existing contacts" (see screenshot below). While I see some limited benefit from this functionality, I think there should also be an "ONLY update empty
                                                                                                                • Begin the year with best practices in the Zoho Desk mobile app : Part 2

                                                                                                                  In focus: Optimizing collaboration and supervision Let's begin 2026 with Part 2 of our tips series on driving your ticketing operations at your fingertips. In Part 1, we explored streamlining operations within tickets. This helped individuals at Omniserve
                                                                                                                • How to update "Lead Status" to more than 100 records

                                                                                                                  Hello Zoho CRM, How do I update "Lead Status" to more than 100 records at once? To give you a background, these leads were uploaded or Imported at once but the lead status record was incorrectly chosen. So since there was a way to quickly add records in the system no matter how many they are, we are also wondering if there is a quicker way to update these records to the correct "Lead Status". I hope our concern makes sense and that there will be a fix for it. All the best, Jonathan
                                                                                                                • JWT Token authentication problem that sometimes generates infinite redirect loops

                                                                                                                  Description : Nous proposons un bouton sur notre plateforme permettant de rediriger l'utilisateur vers le portail ZohoDesk via un jeton JWT pour une authentification transparente. Cependant, il arrive que certains utilisateurs soient pris dans une boucle
                                                                                                                • ZOHO Work Drive Back Up

                                                                                                                  I am looking for a ZOHO Work Drive backup solution. Something that is cloud based. There's lots of these kinds of options for Google Drive and other providers, but I have not seen anything for WorkDrive. Any suggestions?
                                                                                                                • ZOHO Reports - Filter Logic?

                                                                                                                  Hi, I need a way to apply filter logics such as ((1 AND 2) OR 3). All I can see as of now is a way to enter different AND filters in the respective filter column. But how can I add an OR filter? Any advice would be highly appreciated. Mark
                                                                                                                • Recruit API search

                                                                                                                  Hi all, Attempting to call the search api endpoint from Postman using the word element as mentioned in api docs Search Records - APIs | Online Help - Zoho Recruit When making the call to /v2/Candidates/search?word=Saudi receive response of { "code": "MANDATORY_NOT_FOUND",
                                                                                                                • Next Page