MS Office plug in bug

MS Office plug in bug

Please check the error below out. I tried to reinstall Excel, IExplorer, Mozilla, Zoho plug in and the error remains...



Internet explorer script error

line 1542

char 1

error invali argument

http://js.zohostatic.com/sheet/v35_11/js/sheet.js

// $Id$
/**
* IMPORTANT NOTE: This compressed javascript includes thirdparty javascripts
* listed at http://sheet.zoho.com/html/thirdparty.html
* The original javascript sources are available in the above location.
*/

if(!Array.prototype.indexOf){
Array.prototype.indexOf=function(_1){
var _2=this.length;
var _3=Number(arguments[1])||0;
_3=(_3<0)?Math.ceil(_3):Math.floor(_3);
if(_3<0){
_3+=_2;
}
for(;_3<_2;_3++){
if(_3 in this&&this[_3]===_1){
return _3;
}
}
return -1;
};
}
var is_gecko=/gecko/i.test(navigator.userAgent);
var is_ie=/MSIE/.test(navigator.userAgent);
function setSelectionRange(_4,_5,_6){
if(is_gecko){
_4.setSelectionRange(_5,_6);
}else{
var _7=_4.createTextRange();
_7.collapse(true);
_7.moveStart("character",_5);
_7.moveEnd("character",_6-_5);
_7.select();
}
}
function getSelectionStart(_8){
if(is_gecko){
return _8.selectionStart;
}
var _9=document.selection.createRange();
var _a=_9.compareEndPoints("StartToEnd",_9)==0;
if(!_a){
_9.collapse(true);
}
var b=_9.getBookmark();
return b.charCodeAt(2)-2;
}
function getSelectionEnd(_c){
if(is_gecko){
return _c.selectionEnd;
}
var _d=document.selection.createRange();
var _e=_d.compareEndPoints("StartToEnd",_d)==0;
if(!_e){
_d.collapse(false);
}
var b=_d.getBookmark();
return b.charCodeAt(2)-2;
}
var browser_ie=false;
var browser_ie6=false;
var browser_nn4=false;
var browser_nn6=false;
var browser_opera=false;
var browser_safari=false;
var browser_ff3=false;
var os_windows=false;
var os_linux=false;
var os_mac=false;
if(document.all&&window.navigator.userAgent.toUpperCase().indexOf("IE")>=0){
browser_ie=true;
if(window.navigator.appVersion.indexOf("7.0")<0){
browser_ie6=true;
}
}else{
if(document.layers){
browser_nn4=true;
}else{
if(document.layers||(!document.all&&document.getElementById)){
browser_nn6=true;
}
}
}
if(window.navigator.userAgent.toUpperCase().indexOf("OPERA")>=0){
browser_opera=true;
browser_nn6=true;
}
if(window.navigator.userAgent.toUpperCase().indexOf("SAFARI")>=0){
browser_safari=true;
}
if(window.navigator.userAgent.toUpperCase().indexOf("FIREFOX/3")>=0){
browser_ff3=true;
}
if(window.navigator.platform.toUpperCase().indexOf("WIN")>=0){
os_windows=true;
}
if(window.navigator.platform.toUpperCase().indexOf("LINUX")>=0){
os_linux=true;
}
if(window.navigator.platform.toUpperCase().indexOf("MAC")>=0){
os_mac=true;
}
function findPosX(obj){
var _11=0;
if(document.getElementById||document.all){
try{
while(obj.offsetParent){
_11+=obj.offsetLeft;
obj=obj.offsetParent;
}
}
catch(e){
return _11;
}
}else{
if(document.layers){
_11+=obj.x;
}
}
return _11;
}
function findPosY(obj){
var _13=0;
if(document.getElementById||document.all){
try{
while(obj.offsetParent){
_13+=obj.offsetTop;
obj=obj.offsetParent;
}
}
catch(e){
return _13;
}
}else{
if(document.layers){
_13+=obj.y;
}
}
return _13;
}
function findDocDim(){
if(browser_ie){
return {width:document.documentElement.offsetWidth+document.body.scrollLeft,height:document.documentElement.offsetHeight+document.body.scrollTop};
}else{
if(browser_nn4||browser_nn6){
return {width:window.innerWidth+document.body.scrollLeft,height:window.innerHeight+document.body.scrollTop};
}
}
}
function findClientDim(){
if(browser_ie){
var _14=document.body.clientWidth;
var _15=document.body.clientHeight;
}else{
if(browser_nn4||browser_nn6){
var _14=window.innerWidth;
var _15=window.innerHeight;
}
}
return {width:_14,height:_15};
}
function getCursorPos(ev){
if(browser_ie){
var x=window.event.clientX+document.documentElement.scrollLeft;
var y=window.event.clientY+document.documentElement.scrollTop;
}else{
if(browser_nn6){
var x=ev.pageX;
var y=ev.pageY;
}
}
return {x:x,y:y};
}
var scrX=0,scrY=0,pgeX=0,pgeY=0,srcElement;
if(browser_ie){
document.attachEvent("onclick",popUpListener);
}else{
if(browser_nn4||browser_nn6){
document.addEventListener("click",popUpListener,true);
}
}
function popUpListener(e){
if(browser_ie){
srcElement=window.event.srcElement;
}else{
if(browser_nn4||browser_nn6){
srcElement=e.target;
scrX=e.screenX;
scrY=e.screenY;
pgeX=e.pageX;
pgeY=e.pageY;
}
}
}
function getObj(n,d){
if(!d){
d=document;
}
return d.getElementById(n);
}
function getXmlhttp(){
if(window.XMLHttpRequest){
var _1c=new XMLHttpRequest();
}else{
try{
var _1c=new ActiveXObject("Microsoft.XMLHTTP");
}
catch(ee){
try{
var _1c=new ActiveXObject("Microsoft.XMLDOM");
}
catch(e){
var _1c=new ActiveXObject("Msxml2.XMLHTTP");
}
}
}
return _1c;
}
function getXMLHttpRequest(){
var _1d=false;
try{
_1d=new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e){
try{
_1d=new ActiveXObject("Microsoft.XMLHTTP");
}
catch(E){
_1d=false;
}
}
if(!_1d&&typeof XMLHttpRequest!="undefined"){
_1d=new XMLHttpRequest();
}
return _1d;
}
function clearTextSelection(){
if(!READ_WRITE){
return;
}
if(window.getSelection){
window.getSelection().removeAllRanges();
}else{
if(document.getSelection){
var s=document.getSelection();
if(s.collapse){
s.collapse(true);
}
if(s.removeAllRanges){
s.removeAllRanges();
}
}else{
if(document.selection){
if(document.selection.type!="Text"){
document.selection.empty();
}else{
document.selection.clear();
}
}
}
}
}
String.prototype.trim=function(){
var x=this;
x=x.replace(/^\s*(.*)/,"$1");
x=x.replace(/(.*?)\s*$/,"$1");
return x;
};
String.prototype.Ltrim=function(){
var x=this;
x=x.replace(/^\s*(.*)/,"$1");
return x;
};
String.prototype.Rtrim=function(){
var x=this;
x=x.replace(/(.*?)\s*$/,"$1");
return x;
};
if(!document.all){
function getOuterHTML(_22){
var str="";
var _24=["IMG","HR","BR","INPUT"];
switch(_22.nodeType){
case 1:
str+="<"+_22.nodeName;
for(var i=0;i<_22.attributes.length;i++){
if(_22.attributes.item(i).nodeValue!=null){
str+=" ";
str+=_22.attributes.item(i).nodeName;
str+="=\"";
str+=_22.attributes.item(i).nodeValue;
str+="\"";
}
}
if(_22.childNodes.length==0&&_24.getIndexOf(_22.nodeName)>0){
str+=">";
}else{
str+=">";
str+=_22.innerHTML;
str+="</"+_22.nodeName+">";
}
break;
case 3:
str+=_22.nodeValue;
break;
case 4:
str+="<![CDATA["+_22.nodeValue+"]]>";
break;
case 5:
str+="&"+_22.nodeName+";";
break;
case 8:
str+="<!--"+_22.nodeValue+"-->";
break;
}
return str;
}
function Array_getIndexOf(el){
var _27=-1;
for(var i=0;i<this.length;i++){
if(this[i]==el){
_27=i;
break;
}
}
return _27;
}
Array.prototype.getIndexOf=Array_getIndexOf;
}
function MM_openBrWindow(_29,_2a,_2b){
if(document.all){
left=(screen.width/2)-200;
atop=(screen.height/2)-200;
var ft="width=400,height=360"+",left="+left+",top="+atop+",resizable=yes";
win=window.open(_29,_2a,ft);
win.focus();
}else{
if(document.getElementById){
win=window.open(_29,_2a,"width=400,height=360,resizable=yes");
win.focus();
win.moveTo((document.width/2)-235,(document.height/2)-130);
}
}
}
var scrollConst=0;
function isCapsLockOn(_2d,_2e){
return ((_2d>=65&&_2d<=90&&!_2e)||(_2d>=95&&_2d<=123&&_2e))?true:false;
}
function get_cookie(_2f){
var arg=_2f+"=";
var _31=arg.length;
var _32=document.cookie.length;
var i=0;
while(i<_32){
var j=i+_31;
if(document.cookie.substring(i,j)==arg){
return get_cookie_val(j);
}
i=document.cookie.indexOf(" ",i)+1;
if(i==0){
break;
}
}
return null;
}
function get_cookie_val(_35){
var _36=document.cookie.indexOf(";",_35);
if(_36==-1){
_36=document.cookie.length;
}
return unescape(document.cookie.substring(_35,_36));
}
function set_cookie(_37,_38){
var _39=set_cookie.arguments;
var _3a=set_cookie.arguments.length;
var _3b=(_3a>2)?_39[2]:null;
var _3c=(_3a>3)?_39[3]:null;
var _3d=(_3a>4)?_39[4]:null;
var _3e=(_3a>5)?_39[5]:false;
document.cookie=_37+"="+escape(_38)+((_3b==null)?"":("; expires="+_3b.toGMTString()))+((_3c==null)?"":("; path="+_3c))+((_3d==null)?"":("; domain="+_3d))+((_3e==true)?"; secure":"");
}
function del_cookie(_3f){
var exp=new Date();
exp.setTime(exp.getTime()-1);
var _41=get_cookie(_3f);
document.cookie=_3f+"="+_41+"; expires="+exp.toGMTString();
}
function getCaretPos(_42){
var txt=_42.value;
var len=txt.length;
var pos=-1;
if((typeof document.selection!="undefined")&&(!browser_opera)){
var _46=document.selection.createRange();
if(_42.tagName.toUpperCase()!="INPUT"){
var _47=_46.duplicate();
_47.moveToElementText(_42);
_47.setEndPoint("EndToEnd",_46);
_42.selectionStart=_47.text.length-_46.text.length;
_42.selectionEnd=_42.selectionStart+_46.text.length;
pos=_42.selectionStart;
}else{
if(_42.tagName.toUpperCase()=="INPUT"){
pos=getFormInputCaretPos(_42,_46);
}
}
}else{
if(typeof _42.selectionStart!="undefined"){
pos=_42.selectionStart;
}
}
return pos;
}
function getCaretPosByLine(_48){
var txt=_48.value;
var len=txt.length;
var erg=txt.split("\n");
var pos=-1;
if(typeof document.selection!="undefined"&&!browser_opera){
range_sel=document.selection.createRange();
range_obj=_48.createTextRange();
range_obj.moveToBookmark(range_sel.getBookmark());
range_obj.moveEnd("character",_48.value.length);
pos=len-range_obj.text.length;
}else{
if(browser_opera||typeof _48.selectionStart!="undefined"){
pos=_48.selectionStart;
}
}
if(pos!=-1){
var ind=0;
for(ind;erg.length;ind++){
len=erg[ind].length+1;
if(pos<len){
break;
}
pos-=len;
}
ind++;
pos++;
return [ind,pos];
}
}
function setCaretPos(_4e,pos){
_4e.focus();
if(!isNaN(pos)){
setSelectionRange(_4e,pos,pos);
}else{
if(pos=="START"){
setSelectionRange(_4e,0,0);
}else{
if(pos=="END"){
setSelectionRange(_4e,_4e.value.length,_4e.value.length);
}
}
}
}
function getSelectedText(el){
if(is_ie&&!browser_opera){
if(document.selection){
var _51=document.selection.createRange();
if(el.tagName=="TEXTAREA"){
var _52=_51.duplicate();
_52.moveToElementText(el);
_52.setEndPoint("EndToEnd",_51);
el.selectionStart=_52.text.length-_51.text.length;
el.selectionEnd=el.selectionStart+_51.text.length;
}else{
if(el.tagName.toUpperCase()=="INPUT"){
el.selectionStart=getFormInputCaretPos(el,_51);
el.selectionEnd=getSelectionEnd(el,_51);
}
}
}
return el.value.substring(el.selectionStart,el.selectionEnd);
}else{
return el.value.substring(getSelectionStart(el),getSelectionEnd(el));
}
}
function selectText(_53,_54,end){
_53.focus();
setSelectionRange(_53,_54,end);
}
function insertText(_56,val){
var _58=getCaretPos(_56);
var _59=_56.value.substring(0,getSelectionStart(_56));
var _5a=_56.value.substr(getSelectionEnd(_56),_56.value.length);
_56.value=_59+val+_5a;
setCaretPos(_56,(_58+val.length));
return _58;
}
function getText(el,_5c,end){
return el.value.substr(_5c,end);
}
function getTextByLine(_5e,_5f,_60,end){
var txt=_5e.value;
var len=txt.length;
var erg=txt.split("\n");
if(erg[_5f-1]){
return erg[_5f-1].substr(_60,end);
}else{
return "";
}
}
function getCurrentStyle(el,_66){
if(browser_ie||browser_opera){
return el.currentStyle[_66];
}else{
if(browser_nn6){
return document.defaultView.getComputedStyle(el,"")[_66];
}
}
}
function getCurrentStyles(el){
if(browser_ie||browser_opera){
return el.currentStyle;
}else{
if(browser_nn6){
return document.defaultView.getComputedStyle(el,"");
}
}
}
function getSelectionStart(_68){
var txt=_68.value;
var len=txt.length;
var _6b=-1;
if(typeof document.selection!="undefined"&&!browser_opera){
var _6c=document.selection.createRange();
if(_68.tagName.toUpperCase()!="INPUT"){
var _6d=_6c.duplicate();
_6d.moveToElementText(_68);
_6d.setEndPoint("EndToEnd",_6c);
_68.selectionStart=_6d.text.length-_6c.text.length;
_68.selectionEnd=_68.selectionStart+_6c.text.length;
_6b=_68.selectionStart;
}else{
_6b=getFormInputCaretPos(_68,_6c);
}
}else{
if(typeof _68.selectionStart!="undefined"){
_6b=_68.selectionStart;
}
}
return _6b;
}
function getSelectionEnd(_6e){
var _6f=-1;
if(typeof document.selection!="undefined"&&!browser_opera){
_6f=getSelectionStart(_6e)+document.selection.createRange().text.length;
}else{
if(typeof _6e.selectionStart!="undefined"){
_6f=_6e.selectionEnd;
}
}
return _6f;
}
function getFormInputCaretPos(_70,_71){
var pos,_73,_74;
if(_70.tagName.toUpperCase()=="INPUT"){
_73=_71.compareEndPoints("StartToEnd",_71)==0;
if(!_73){
_71.collapse(true);
}
_74=_71.getBookmark();
pos=_74.charCodeAt(2)-2;
return pos;
}
}
function LightenColor(_75,_76){
var r,g,b,txt;
r=parseInt(_75.substr(1,2),16),g=parseInt(_75.substr(3,2),16),b=parseInt(_75.substr(5,2),16),r+=_76;
if(r>255){
r=255;
}
if(r<0){
r=0;
}
g+=_76;
if(g>255){
g=255;
}
if(g<0){
g=0;
}
b+=_76;
if(b>255){
b=255;
}
if(b<0){
b=0;
}
txt=b.toString(16);
if(txt.length<2){
txt="0"+txt;
}
txt=g.toString(16)+txt;
if(txt.length<4){
txt="0"+txt;
}
txt=r.toString(16)+txt;
if(txt.length<6){
txt="0"+txt;
}
return "#"+txt.toUpperCase();
}
function DarkenColor(_7b,_7c){
return LightenColor(_7b,_7c*-1);
}
function isChild(_7d,_7e){
try{
if(_7d==_7e){
return false;
}
while(_7d.parentNode!=_7e){
if(_7d.parentNode==document.body){
return false;
}else{
_7d=_7d.parentNode;
}
}
return true;
}
catch(e){
return false;
}
}
function escapeSpecialChar(_7f){
var _80=arguments[1];
_7f=encodeURIComponent(escape(_7f));
if(_80!="no"){
if(arguments[0].indexOf(".")!=-1){
_7f=_7f.replace(/\./g,"\\.");
}
if(arguments[0].indexOf("*")!=-1){
_7f=_7f.replace(/\*/g,"\\*");
}
if(arguments[0].indexOf("_")!=-1){
_7f=_7f.replace(/\_/g,"\\_");
}
if(arguments[0].indexOf("-")!=-1){
_7f=_7f.replace(/\-/g,"\\-");
}
}
return _7f;
}
function unescapeSpecialChar(_81){
var _82=arguments[1];
if(_82!="no"){
if(arguments[0].indexOf(".")!=-1){
_81=_81.replace(/\\\./g,".");
}
if(arguments[0].indexOf("*")!=-1){
_81=_81.replace(/\\\*/g,"*");
}
if(arguments[0].indexOf("_")!=-1){
_81=_81.replace(/\\\_/g,"_");
}
if(arguments[0].indexOf("-")!=-1){
_81=_81.replace(/\\\-/g,"-");
}
}
_81=unescape(decodeURIComponent(_81));
return _81;
}
function setSelectionRange(_83,_84,end){
try{
if(_83.setSelectionRange){
_83.setSelectionRange(_84,end);
}else{
if(_83.createTextRange){
var _86=_83.createTextRange();
_86.collapse(true);
if(_84!=end){
_86.moveStart("character",_84);
_86.moveEnd("character",end);
}else{
_86.moveStart("character",_84);
}
_86.select();
}
}
}
catch(e){
}
}
function getCountOfOccrnceOfCharInStr(_87,_88){
return (_87.split(_88).length-1);
}
getMaxLengthOfAnElemInAnArr=function(arr){
var _8a=0;
var _8b=0;
for(_8b in arr){
_8a=(arr[_8b].length>_8a)?arr[_8b].length:_8a;
}
return _8a;
};
function stopEvt(ev){
if(browser_ie){
window.event.cancelBubble=true;
}else{
if(browser_nn6){
ev.stopPropagation();
}
}
}
function matchString(str,_8e){
var _8f=[];
var _90=10;
if(isNaN(str)&&(new RegExp("[a-z].*","gi")).exec(str)!=null){
str=escapeSpecialChar(str);
for(var _91=0;_91<_8e.length;_91+=1){
tmp=escapeSpecialChar(_8e[_91],"no");
var re=new RegExp("^"+str+"[^$].*?","gi");
var m=re.exec(tmp);
if(m&&m.index==0){
_8f[_8f.length]=unescapeSpecialChar(tmp);
if(_90&&_8f.length==_90){
break;
}
}
}
}
return _8f;
}
function isCaretPosAtEnd(_94){
return (_94.value.length==getSelectionEnd(_94))?true:false;
}
function isTextSelected(_95){
return (getSelectedText(_95).length>0)?true:false;
}
function restrictTextSelection(el){
el.onselectstart=new Function("return false");
(browser_ie)?el.attachEvent("onmousedown",function(){
el.onmousedown=new Function("return false");
}):el.addEventListener("mousedown",function(){
el.onmousedown=new Function("return false");
},false);
}
function resumeTextSelection(el){
el.onselectstart=new Function("return true");
}
function isNumber(obj){
return (typeof (obj)=="number")?true:false;
}
function isObject(obj){
return (typeof (obj)=="object")?true:false;
}
function isStr(obj){
return (typeof (obj)=="string")?true:false;
}
function isBoolean(obj){
return (typeof (obj)=="boolean")?true:false;
}
function getMouseWheelData(ev){
var _9d=ev.detail?ev.detail*-1:ev.wheelDelta/40;
return _9d;
}
function callIamDialog(_9e,_9f,_a0,_a1){
if(typeof _a0=="undefined"&&_a0==""){
_a0="100%";
}
if(typeof _9f=="undefined"){
_9f="";
}
if(typeof _a1=="undefined"){
_a1="";
}else{
_9f="split="+_9f+"&";
}
if(!_a2){
var _a2="/";
}
showURLInDialog(_a2+"copysignin.jsp?"+_9f+"src="+_9e,"position=absmiddle,modal=yes,title="+_a1);
return false;
}
function isUndefined(obj){
return (typeof (obj)=="undefined")?true:false;
}
function isDialogHidden(){
if(dialogHidden==true){
return true;
}else{
return false;
}
}
function isElement(obj){
if(obj!=null&&isObject(obj)){
return (typeof obj.tagName=="string");
}else{
return false;
}
}
function getPrintableCharacterKeyCodes(){
return [8,32,46,48,49,50,51,52,53,54,55,56,57,59,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,107,109,188,190,191,192,219,220,221,222];
}
var csrfParamName="csrfParam";
var csrfToken="";
function sendXMLHTTPRequest(_a5,_a6,_a7,_a8,_a9,_aa){
if(_a7){
var _ab,_ac;
if(_aa){
_ab=parent.csrfParamName;
_ac=parent.csrfToken;
}else{
_ab=csrfParamName;
_ac=csrfToken;
}
if(typeof _a6!="undefined"){
if(_a6.lastIndexOf("&")==_a6.length-1){
_a6+=_ab+"="+_ac;
}else{
_a6+="&"+_ab+"="+_ac;
}
}else{
_a6=_ab+"="+_ac;
}
}
if(_a8&&typeof _a9!="undefined"){
if(_aa){
parent.postAjax(_a5,_a9,_a6);
}else{
postAjax(_a5,_a9,_a6);
}
}else{
_a5.send(_a6);
}
}
function appendCSRFToURL(url){
if(typeof url!="undefined"){
if(url.lastIndexOf("&")==url.length-1){
url+=csrfParamName+"="+csrfToken;
}else{
url+="&"+csrfParamName+"="+csrfToken;
}
}else{
url=csrfParamName+"="+csrfToken;
}
return url;
}
var isExportEvent=false;
var ie=false;
var DOCUMENT_ID="doc_id";
var DOCUMENTSHEET_ID="docsheet_id";
var DOCUMENTSHEET_NAME="docsheet_name";
var DOCUMENT_VIEW="NEW_VIEW";
var SIDEBAR_VIEW="mydocs";
var COLOR_DIV_ID="bg_fill_div";
var DOCUMENT_NAME="";
var DOC_NAME="";
var NEWDOCNAME="";
var DEFAULT_FILENAME_FLAG=false;
var jsNEW_DOC_VIEW=false;
var jsOPEN_DOC_VIEW=false;
var jsSHARE_VIEW=false;
var jsTRASH_VIEW=false;
var jsGUEST_VIEW=false;
var jsPUBLIC_VIEW=false;
var jsTHROWAWAY_VIEW=false;
var jsGADGET_VIEW=false;
var jsREMOTE_VIEW=false;
var jsVERSION_VIEW=false;
var jsREMOTE_SAVE_VIEW=false;
var DOCUMENT_LOCKED=false;
var READ_WRITE=false;
var IPHONE_VIEW=false;
var isDocumentPublic=false;
var isDocumentSemiPublic=false;
var isStockConfigured=false;
var SAVED=true;
var OOLOADED=true;
var ENTEREDPERFCHECK=false;
var CANREADWRITE=true;
var ACCOUNT_ID=0;
var AUTO_SAVED=null;
var SERVERPORT="";
var SERVERNAME="";
var TAGLIST="";
var TOTALSHEETS=0;
var CURRSHEETNAME="Sheet1";
var CURRSHEETINDEX=0;
var SAVEPARAM="";
var ISPRINTDIALOGOPENED=false;
var IMAGE_PATH="";
var LOCKED_USER="";
var SAVECHART="false";
var IMPORTDOC="IMPORTDOC";
var ERRORIMPORT=false;
var CURRENTTIME="CURRENTTIME";
var IMPORTACC="0";
var IMPORTTIME="IMPORTTIME";
var LOGINNAME="";
var isEdit=false;
var ENABLECACHE=true;
var ENABLERTC=true;
var HTMLVIEW=false;
var HTMLCHARTINFO=new Array();
var DELETEHTML=false;
var STYLE_PATH="";
var USE_COMPRESSION="";
var BUILD_VERSION="";
var ssServer="";
var initSSWidth="";
var initSSHeight="";
var initColHeadHeight="";
var initRowHeadWidth="";
var initCols="";
var initRows="";
var initColWidth="";
var initRowHeight="";
var defCellStyleStr="";
var defCellStyle="";
var defCellFormat="";
var defCellHolderProp="";
var tablewidth="";
var tableheight="";
var bridgeNumber="-1";
var saveForward="";
var commentCnt=0;
var guestId="";
var versionDetailsNo=0;
var IS_UNSAVED_SHEET=false;
var IS_REVERT_ALLOWED=false;
var ALL_SHEET_SHARED=false;
var IS_WHOLE_DOCUMENT_SHARED_IN_READ_WRITE=false;
var INSERT_SHEET_ALLOWED=false;
var DOCUMENT_VERSION="";
var isVersionPending=false;
if(document.all){
ie=true;
}
var isRangeDialog=false;
var CURR_DOC_OWNERNAME="";
var isPublished=false;
var commentString="";
var isRangeEdit=false;
var SHAREDUSERS="";
var NOTIFY="false";
var COLLAB_ID="";
var ISSAMESHEET="true";
var RTCSHEETNAME="";
var SAVEDOC="false";
var C_STARTROW="";
var C_ENDROW="";
var C_STARTCOL="";
var C_ENDCOL="";
var RTC_DOCID="";
var RTC_DOCNAME="";
var RTC_EXISTS="false";
var COLLABORATIVE_EDITING="OFF";
var SHAREDUSERSLIST=new Array();
var ISCOLLAB="false";
var CURRENTUSER="";
var documentOpened="false";
var LISTOFCOLLABIDS="";
var BACKUPCOLLABID="";
var DONTNOTIFY=false;
var INSERTIMAGE=false;
var IMAGEOBJECT=null;
var XPOSITION=null;
var YPOSITION=null;
var UPDATEIMAGEINOO=true;
var oFCKeditorforDoc=null;
var oFCKeditorforSheet=null;
var doAutoSave=false;
var usedCursCol=0;
var usedCursRow=0;
var publicURL="";
var sbWidth=200;
var MKIMODE=false;
var MKIEXPORT=false;
var BAIHUIMODE=false;
var NTTMODE=false;
var NOPDF=false;
var NTTCALLID="";
var NTTCOMPANYID="";
var NTTFILEPATH="";
var USERCURRENCY="DOLLAR";
var CURRENCYSYMBOLS=["$","&#x20AC;","&#xA3;","&#xA5;","Rs","&#xFFE5;"];
var savedFlag=true;
var DO_INDEX_SEARCH=false;
var DOCUMENT_NAME_URL="";
var BACKGROUNDCOLOR="";
var FONTCOLOR="";
var sbDocId="";
var mysheetSort="modifydes";
var sharesheetSort="asc";
var mysheetFilter="all";
var sharesheetFilter="all";



























































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































 

    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

                                                                                                                • How do i integrate google analytics to Zoho Campaigns?

                                                                                                                  Looking to track Zoho Traffic from email Current topic is outdated
                                                                                                                • How do teams manage meeting follow-ups across Zoho tools?

                                                                                                                  We’re using Zoho tools for collaboration and tracking, but managing meeting notes, action items, and follow-ups across teams is still challenging. Curious how others are handling this within Zoho workflows. Are there best practices or integrations that
                                                                                                                • Mejoras urgentes para ZOHO MEETING

                                                                                                                  Tengo unos meses usando Zoho Meeting. En general, es buena, pero hay cosas vitales que no logra cumplir con mínima calidad. 1) Calidad de audio y video: urge mejoras. Audio con retraso, imagen borrosa, mal recorte de silueta con fondos virtuales. Además,
                                                                                                                • Saving sent email campaign as PDF

                                                                                                                  I'm looking to add all campaigns sent to an archive folder in sharepoint. Is there anyway to accomplish this in Zoho Flow ? I'm falling at the first hurdle ... can I automatically save a sent campaign as a PDF to a folder location ?
                                                                                                                • Exporting All Custom Functions in ZohoCRM

                                                                                                                  Hello, All I've been looking for a way to keep about 30 functions that I have written in Zoho CRM updated in my own repository to use elsewhere in other instances. A github integration would be great, but a way to export all custom functions or any way
                                                                                                                • Conditional Layouts On Multi Select Field

                                                                                                                  How we can use Conditional Layouts On Multi Select Field field? Please help.
                                                                                                                • Appreciation to Qntrl Support Team

                                                                                                                  We are writing this topic to appreciate the outstanding level of support from Qntrl Team. We have been using Qntrl since 2022 after shifting from another similar platform. Since we joined Qntrl, the team has shown a high level of professionalism, support,
                                                                                                                • How can I hide "My Requests" and "Marketplace" icon from the side menu

                                                                                                                  Hello everybody, We recently started using the new Zoho CRM for Everyone. How can I hide "My Requests" and "Marketplace" from the side menu? We don't use these features at the moment, and I couldn't find a way to disable or remove them. Best regards,
                                                                                                                • Whatsapp Integration on Zoho Campaign

                                                                                                                  Team: Can the messages from Zoho Campaign delivered through Whatsapp... now customers no longer are active on email, but the entire campaign module is email based.... when will it be available on whatsapp.... are there any thirdparty providers who can
                                                                                                                • Mandatory Field - but only at conversion

                                                                                                                  Hello! We use Zoho CRM and there are times where the "Lead Created Date & Time" field isn't populated into a "Contractor" (Account is the default phrase i believe). Most of my lead tracking is based on reading the Lead Created field above, so it's important
                                                                                                                • Using data fields in Zoho Show presentations to extract key numbers from Zia insights based on a report created

                                                                                                                  Is it possible to use data fields in Zoho Show presentations along with Zoho Analytics to extract key numbers from Zia insights based on a report created? For example, using this text below: (note that the numbers in bold would be from Zia Insights) Revenue
                                                                                                                • Free webinar: AI-powered agreement management with Zoho Sign

                                                                                                                  Hi there! Does preparing an agreement feel like more work than actually signing it? You're definitely not alone. Between drafting the document, managing revisions, securing internal approvals, and rereading clauses to make sure everything still reflects
                                                                                                                • WhatsApp Channels in Zoho Campaigns

                                                                                                                  Now that Meta has opened WhatsApp Channels globally, will you add it to Zoho Campaigns? It's another top channel for marketing communications as email and SMS. Thanks.
                                                                                                                • CRM For Everyone - Bring Back Settings Tile View

                                                                                                                  I've been using CRM for Everyone since it was in early access and I just can't stand the single list settings menu down the left-hand side. It takes so much longer to find the setting I need. Please give users the option to make the old sytle tile view
                                                                                                                • Lets have Dynamics 365 integration with Zohobooks

                                                                                                                  Lets have Dynamics 365 integration with Zohobooks
                                                                                                                • Add notes in spreadsheet view

                                                                                                                  It would be great if we could Add/edit notes in the spreadsheet view of contacts/leads. This would enable my sales teams to greatly increase their number of calls. Also viewing the most recent note in the Contact module would also be helpful.
                                                                                                                • Opening balances - Accounts Receivable and Payable

                                                                                                                  Our accounting year starts on 1st August 2013 and I have a Trial Balance as at that date, including Accounts Receivableand Accounts Payable balances, broken down by each customer and supplier. Q1 - do I show my opening balance date as 31st July 2013 or
                                                                                                                • Cancel Subscription

                                                                                                                  Hi , Im want to cancel my account but without success please help me to do it
                                                                                                                • Making an email campaign into a Template

                                                                                                                  I used a Zoho Campaign Template to create an email. Now I want to use this email and make it a new template, but this seems to be not possible. Am I missing something?
                                                                                                                • Direct Access and Better Search for Zoho Quartz Recordings

                                                                                                                  Hi Zoho Team, We would like to request a few enhancements to improve how Zoho Quartz recordings are accessed and managed after being submitted to Zoho Support. Current Limitation: After submitting a Quartz recording, the related Zoho Support ticket displays
                                                                                                                • Multiple Cover Letters

                                                                                                                  We are using the staffing firm edition of Recruit and we have noticed that candidates cannot add more than one cover letter. This is a problem as they might be applying for multiple jobs on our career site and when we submit their application to a client,
                                                                                                                • URGENT: Deluge issue with Arabic text Inbox

                                                                                                                  Dear Deluge Support, We are facing an issue that started on 12/Feb/2026 with custom functions written using Deluge within Qntrl platform. Currently, custom functions do not accept Arabic content; it is replaced with (???) characters. Scenario 1: If we
                                                                                                                • File Conversion from PDF to JPG/PNG

                                                                                                                  Hi, I have a question did  anyone every tried using custom function to convert a PDF file to JPG/PNG format? Any possibility by using the custom function to achieve this within zoho apps.  I do know there are many third parties API provide this with
                                                                                                                • Now in Zoho One: Orchestrate customer journeys across apps with Zoho CommandCenter

                                                                                                                  Hello Zoho One Community! We’re excited to introduce Zoho CommandCenter as a new capability available in Zoho One. For the whole customer journey As Zoho One customers adopt more apps across sales, marketing, finance, and support, a common challenge emerges:
                                                                                                                • annualy customer report

                                                                                                                  we need a report per customer that looks like this invoic number cleaning laundry repair management 01 january xxx euro xx euro xx euro xxx euro 02 february xxx euro xxx euro x euro xxxx euro and so on the years 12 months is that possible to make and
                                                                                                                • Totals for Sales Tax Report

                                                                                                                  On the sales tax report, the column totals aren't shown for any column other than Total Tax. I can't think of a good reason that they shouldn't be included for the other columns, as well. It would help me with my returns, for sure. It seems ludicrous
                                                                                                                • Free Webinar: Zoho Sign for Zoho Projects: Automate tasks and approvals with e-signatures

                                                                                                                  Hi there! Handling multiple projects at once? Zoho Projects is your solution for automated and streamlined project management, and with the Zoho Sign extension, you can sign, send, and manage digital paperwork directly from your project workspace. Join
                                                                                                                • Exported Report File Name

                                                                                                                  Hi, We often export reports for information. It is time consuming to rename all the reports we export on a weekly basis, as when exported their default name is a seemingly random string of numbers. These numbers may be important, I'm not sure, but I am
                                                                                                                • Automatic Refresh on Page?

                                                                                                                  Hi everyone, We use a page as a dashboard which shows data for the laboratory and tasks pending etc. Is there a way to set the page to automatically refresh on a X time? Many thanks TOG
                                                                                                                • Add RTL and Hebrew Support for Candidate Portal (and Other Zoho Recruit Portals)

                                                                                                                  Dear Zoho Recruit Team, I hope you're doing well. We would like to request the ability to set the Candidate Portal to be Right-to-Left (RTL) and in Hebrew, similar to the existing functionality for the Career Site. Currently, when we set the Career Site
                                                                                                                • Default Reminder Time in New Tasks or New Event?

                                                                                                                  Any way to change this from 1:00am? Thanks, Gary Moderation Update (February 2026): With the Calendar preferences, the default reminder time for Meetings, Appointments and All-Day Meetings can be set. Read more: Calendar preferences in Zoho CRM Regarding
                                                                                                                • Dynamic Field Folders in OneDrive

                                                                                                                  Hi, With the 2 options today we have either a Dynamic Parent Folder and lots of attachments all in that one folder with only the ability to set the file name (Which is also not incremented so if I upload 5 photos to one field they are all named the same
                                                                                                                • Right Shift key not sending to Zoho Assist environments

                                                                                                                  I'm unable to use Right Shift key in Zoho environments. Zoho environments are Win10. Computer I access from is Win 11. Issue started when I changed to Win 11. Have tried: - Multiple browsers - web client AND desktop client - 3rd party mapping tools to
                                                                                                                • About Meetings (Events module)

                                                                                                                  I was working on an automation to cancel appointments in zoho flow , and in our case, we're using the Meetings module (which is called Events in API terms). But while working with it, I'm wondering what information I can display in the image where the
                                                                                                                • PDF Annotation is here - Mark Up PDFs Your Way!

                                                                                                                  Reviewing PDFs just got a whole lot easier. You can now annotate PDFs directly in Zoho Notebook. Highlight important sections, add text, insert images, apply watermarks, and mark up documents in detail without leaving your notes. No app switching. No
                                                                                                                • Ability to assign Invoice Ownership through Deluge in FSM

                                                                                                                  Hi, As part of our process, when a service appointment is completed, we automated the creation of the invoice based on a specific business logic using Deluge. When we do that, the "Owner" of the invoice in Zoho FSM is defaulted to the SuperAdmin. This
                                                                                                                • How do you do ticket add ons in Backstage?

                                                                                                                  Hi Everyone, If you wanted to have general admin tickets and allow for add ons, like camping, or car or Carbon offset. What would you do? Peace Robin
                                                                                                                • From Zoho CRM to Paper : Design & Print Data Directly using Canvas Print View

                                                                                                                  Hello Everyone, We are excited to announce a new addition to your Canvas in Zoho CRM - Print View. Canvas print view helps you transform your custom CRM layouts into print-ready documents, so you can bring your digital data to the physical world with
                                                                                                                • validation rules doesn't work in Blueprint when it is validated using function?

                                                                                                                  I have tried to create a validation rule in the deal module. it works if I try to create a deal manually or if I try to update the empty field inside a deal. but when I try to update the field via the blueprint mandatory field, it seems the validation
                                                                                                                • Pull cells from one sheet onto another

                                                                                                                  Hello all! I have created an ingredients database where i have pricing and information and i want to pull from that database into a recipe calculator. I want it to pull based on what ingredient I choose. The ingredients database has an idea and i want
                                                                                                                • Next Page