|
From: Matthias R. <mr...@gm...> - 2014-12-29 18:33:47
|
Hi XLW-team,
I have a function that returns a CellMatrix.
Is it possible to set the values of a CellMatrix to excel error types like
#REF! or #N/A ?
Something like (but no strings)
CellMatrix ReturnError()
{
CellMatrix errors(1,1);
errors(0,0) = "N/A";
return errors;
}
Matt
|