Kaydet (Commit) f7d31f5b authored tarafından Takeshi Abe's avatar Takeshi Abe Kaydeden (comit) Kohei Yoshida

fdo#37776

VLOOKUP/HLOOKUP now allow a single reference as the second parameter.
üst e1bf4cbe
......@@ -5806,6 +5806,12 @@ void ScInterpreter::CalculateLookup(sal_Bool HLookup)
return;
}
}
else if (eType == svSingleRef)
{
PopSingleRef(nCol1, nRow1, nTab1);
nCol2 = nCol1;
nRow2 = nRow1;
}
else if (eType == svMatrix || eType == svExternalDoubleRef || eType == svExternalSingleRef)
{
pMat = GetMatrix();
......
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