Commit 631bdf21 authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix VLOOKUP format cell

parent 77fd3d33
...@@ -1164,6 +1164,7 @@ ...@@ -1164,6 +1164,7 @@
cVLOOKUP.prototype.constructor = cVLOOKUP; cVLOOKUP.prototype.constructor = cVLOOKUP;
cVLOOKUP.prototype.argumentsMin = 3; cVLOOKUP.prototype.argumentsMin = 3;
cVLOOKUP.prototype.argumentsMax = 4; cVLOOKUP.prototype.argumentsMax = 4;
cVLOOKUP.prototype.numFormat = AscCommonExcel.cNumFormatNone;
cVLOOKUP.prototype.Calculate = function (arg) { cVLOOKUP.prototype.Calculate = function (arg) {
var arg0 = arg[0], arg1 = arg[1], arg2 = arg[2]; var arg0 = arg[0], arg1 = arg[1], arg2 = arg[2];
var arg3 = this.argumentsCurrent == 4 ? arg[3].tocBool().value : true; var arg3 = this.argumentsCurrent == 4 ? arg[3].tocBool().value : true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment