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

                                                                                                                • Can't find imported leads

                                                                                                                  Hi There I have imported leads into the CRM via a .xls document, and the import is showing up as having been successful, however - when I try and locate the leads in the CRM system, I cannot find them.  1. There are no filters applied  2. They are not
                                                                                                                • Custom Button Disappearing in mobile view | Zoho CRM Canvas

                                                                                                                  I'm working in Zoho CRM Canvas to create a custom view for our sales team. One of the features I'm adding is a custom button that opens the leads address in another tab. I've had no issue with this in the desktop view, but in the mobile view the button
                                                                                                                • The connected workflow is a great idea just needs Projects Integrations

                                                                                                                  I just discovered the connected workflows in CRM and its a Great Idea i wish it was integrated with Zoho Projects I will explain our use case I am already trying to do something like connected workflow with zoho flow Our requirement was to Create a Task
                                                                                                                • Zoho Projects MCP Feedback

                                                                                                                  I've started using the MCP connector with Zoho Projects, and the features that exist really do work quite well - I feel this is going to be a major update to the Zoho Ecosystem. In projects a major missing feature is the ability to manage, (especially
                                                                                                                • email template

                                                                                                                  How do I create and save an email template
                                                                                                                • Enhancements in Portal User Group creation flow

                                                                                                                  Hello everyone, Before introducing new Portal features, here are some changes to the UI of Portals page to improve the user experience. Some tabs and options have been repositioned so that users can better access the functionalities of the feature. From
                                                                                                                • Always display images from this sender – Is this feature available?

                                                                                                                  In Zoho mail, I had my "Load external images" setting set to "Ask me", and that's fine. That's the setting I prefer. What's not fine though is I always need to tick "Display now" for each email I get, regardless if I've done that multiple times from several
                                                                                                                • Zoho voice and Zoho CRM mobile app

                                                                                                                  I am trying to sync my mobile app Zoho CRM to Zoho voice. When I go to make an outbound call to the clients in the app, it uses my personal phone number. In the settings of the Zoho CRM app, I see it gives me an option to where I can place calls from.
                                                                                                                • Zoho Notebook Sync problem

                                                                                                                  I'm facing a problem with syncing of notebook on android app. It's not syncing. Sometimes it syncs after a day or two.  I created some notes on web notebook but it's not syncing on mobile app. Please help!!!!
                                                                                                                • Cant Save Gauge on Creator Page

                                                                                                                  How to Save Gauge on Creator Page see movie https://vimeo.com/1116410860?share=copy#t=0
                                                                                                                • Apply Advance option not shown in report

                                                                                                                  We are facing an issue in Zoho Expenses. While approving an Expense Report, the "Apply Advance" option is not appearing under the three dots (More Options). Details: Module: Expense Reports Issue: "Apply Advance" option not visible Status of Report: Awaiting
                                                                                                                • Auto Capitalize First Letter of Words

                                                                                                                  Hi I am completely new to ZOHO and am trying to build a database. How can i make it when a address is entered into a form field like this: main st it automatically changes is to show: Main St Thank You
                                                                                                                • Follow-up emails via Workflow Automation not staying in the same thread

                                                                                                                  Dear Zoho Support Team, I am currently using Workflow Automation in Zoho Campaigns to send follow-up emails. In my test case, I noticed the following behavior: All emails in the automation have the same subject line. If the follow-up email is sent within
                                                                                                                • Client Script refuses to set an initial value in Subform field

                                                                                                                  I tried a very simple, 1 line client script to set a default value in a custom subform field when the "Add Row" button is clicked and the user is entering data. It does not work - can someone tell me why? ZDK documentation suggests this should be doable.
                                                                                                                • iOS CRM + Ringcentral

                                                                                                                  So making calls from zoho CRM app for years now have gone over to ringcentral and tried their iOS app. Looking in CRM app you can choose iPhone, Skype etc for making calls is there an option for the Ringcentral app.
                                                                                                                • Answering Phonebridge Calls Through the iPhone App

                                                                                                                  Hi, I've just started using Phonebridge and Twilio to place calls directly through the CRM and it's working great. My sales team also uses the iPhone app to place calls to Contacts and Leads. Is there a way to receive phone calls within the Zoho iPhone app? Thanks! Jim
                                                                                                                • Help Center IFrame Issue

                                                                                                                  I have had a working Help Center on my website using an iframe for a while. But now for some reason the sign in page gets a refused to connect error. Can someone please help. If I go to the url manually it works correclty
                                                                                                                • Comment Templates

                                                                                                                  Is it possible to add a template option for comments? We have some agents in the process who's responses require a pre-formatted layout. It would be incredibly handy to have a template for them where they can insert the template and then add their responses
                                                                                                                • Shared values: From classroom lessons to teaching moments in customer service

                                                                                                                  While the world observes Teachers’ Day on October 5, in India, we celebrate a month earlier, on September 5, to mark the birth anniversary of Dr. Sarvepalli Radhakrishnan, a great teacher, renowned scholar, educationist, and advocate for empowerment.
                                                                                                                • Create a list of customers who participated in specific Zoho Backstage events and send them an email via Zoho CRM

                                                                                                                  How to create a list of customers who participated in specific Zoho Backstage events and send them an email via Zoho CRM? I was able to do a view in CRM based on customer that registered to an event, but I don't seems to be able to include the filter
                                                                                                                • Zoho Desk blank page

                                                                                                                  1. Click Access zoho desk on https://www.zoho.com/desk/ 2. It redirects to https://desk.zoho.com/agent?action=CreatePortal and the page is blank. Edge browser Version 131.0.2903.112 (Official build) (arm64) on MacOS
                                                                                                                • I hate the new user UI with the bar on the left

                                                                                                                  How can I reverse this?
                                                                                                                • Question regarding import of previous deals...

                                                                                                                  Good afternoon, I'm working on importing some older deal records from an external sheet into the CRM; however, when I manually click "Add New Deal" and enter the pertinent information, the deal isn't appearing when I look at the "Deals" bar on the account's
                                                                                                                • Client Script also planned for Zoho Desk?

                                                                                                                  Hello there, I modified something in Zoho CRM the other day and was amazed at the possibilities offered by the "Client Script" feature in conjunction with the ZDK. You can lock any fields on the screen, edit them, you can react to various events (field
                                                                                                                • One person/cell phone to manage multiple accounts

                                                                                                                  Hi. I have a personal Free account to keep my own domain/emails. Now I need to create a Business account to my company's own domain, but I have only one mobile phone number I use to everything. How do I do to manage this? Can I manage a Free domain and
                                                                                                                • Tracking KPIs, Goals etc in People

                                                                                                                  How are Zoho People users tracking employee targets in People? For example, my marketing assistant has a target of "Collect 10 new customer testimonials every month". I want to record attainment for this target on a monthly basis, then add it to their
                                                                                                                • Zoho Desk: Ticket Owner Agents vs Teams

                                                                                                                  Hi Zoho, We would like to explore the possibility of hiding the ‘Agents’ section within the Ticket Owner dropdown, so that we can fully utilise the ‘Teams’ dropdown when assigning tickets. This request comes from the fact that only certain agents and
                                                                                                                • Can not Use Attachment Button on Android Widget

                                                                                                                  this always pops up when I touch the attach button on android widget. going to settings, there is no storage permission to be enabled. if I open the app, and access the attach feature there, I can access my storage and upload normally.
                                                                                                                • Announcing new features in Trident for Mac (1.24.0)

                                                                                                                  Hello everyone! Trident for macOS (v.1.24.0) is here with interesting features and thoughtful enhancements to redefine the way you plan and manage your calendar events. Here's a quick look at what's new. Create calendar events from emails. In addition
                                                                                                                • Mass Mail Statistics - Number of unsent emails

                                                                                                                  How do I find out which emails were not sent?
                                                                                                                • Est-il possible d'annuler l'envoi d'un mail automatique ?

                                                                                                                  Bonjour, Lorsque je refuse un candidat, il reçois un mail dans les 24h pour l'informer que sa candidature n'est pas retenue. J'ai rejeté un candidat par erreur. Savez-vous s'il possible d'annuler l'envoi de ce mail ? Merci d'avance pour votre aide.
                                                                                                                • embed a form in an email

                                                                                                                  Hello, how to embed a form in an email that populates Zoho CRM cases? I would like to send emails to a selected audience offering something. In the same email the recipients - if interested - instead of replying to can fill in a Zoho CRM form that creates
                                                                                                                • How to add Zoho demo site page designs to my Zoho Sites website

                                                                                                                  Hi, I would like to add the design from the following demo URLs into my current Zoho website. I have already created two new pages on my site, named “Menu2” and “Menu3.” For the “Menu2” page, I want to use the design from this demo: https://naturestjuice-demo.zohosites.com/menu
                                                                                                                • Digest Août - Un résumé de ce qui s'est passé le mois dernier sur Community

                                                                                                                  Bonjour chère communauté ! Voici le résumé tant attendu de tout ce qui a marqué Zoho le mois dernier : contenus utiles, échanges inspirants et moments forts. 🎉 Découvrez Zoho Backstage 3.0 : une version repensée pour offrir encore plus de flexibilité,
                                                                                                                • Kaizen #206 - Answering your Questions | Displaying Related Purchase Orders from Zoho Books in CRM Deals using Queries

                                                                                                                  Hello everyone! We're back with another post in the Kaizen series. We're grateful for the feedback we received from all of you! One of the questions we received was "I would like to see the list of Purchase Orders in Zoho Books for a Deal in CRM." We
                                                                                                                • Add Analytics function for Title case (capitalising each word in a string)

                                                                                                                  At present, you can only capitalise each word in a string in Analytics during data import. It would be really useful to be able to do this with a formula column, but there is no Title Case function.
                                                                                                                • How to conditionally embed an own internal widget with parameters in an html snippet?

                                                                                                                  Hello everyone, I'm trying to create a dynamic view in a page using an HTML snippet. The goal is to display different content based on a URL parameter (input.step). I have successfully managed to conditionally display different forms using the following
                                                                                                                • Sync more than one Workdrive

                                                                                                                  Hello Please I'm facing some difficulties since some days. In my company we have many zoho accounts in different organisations. And I have to find a way to sync all these Workdrives. I spend many hours to search it on zoho Workdrive but no solution. Could someone help me ? Any idea how I can achieve it ? Thanks in advance. Regards
                                                                                                                • Zoho Flow Customer Support

                                                                                                                  Zoho Flow is refusing to even respond to my support requests. Is there anyone on this forum who knows how to solve Zoho Flow issues? I have a simple problem and need help. Thanks.
                                                                                                                • Base Currency Adjustment Reversal

                                                                                                                  Two questions surrounding the base currency adjustments (BCA). I recently ported over from QB so I need to enter the base currency adjustments. In QB, it will calculate the BCA for you at the end of the year and then reverse it at the top of the following year. Makes sense. Does Zohobooks not do this as well? I created a BCA for Dec 31, 2016 but no reversing entry was made Jan 1, 2017. Am I supposed to manually do a reversal? I'm not even allowed to post journals directly to the 'exchange gain loss'
                                                                                                                • Next Page