N
NA_AB
hey friends,
public int addme(params object[] list)
{
// sum all the integers included in list
int sum = 0;
foreach (object o in list)
if (o.GetType() == typeof(int))
sum += (int)o;
return sum;
}
this code works fine as a stand alone code but when am trying to invoke the
"addme" function from excel by saying "=addme(10,20,30)" or "=addme(10,20)"
in the excel cell, it is not returning me the sum. All I see is "#VALUE!" in
that excel cell.
kindly let me know what should be done in this regard...
public int addme(params object[] list)
{
// sum all the integers included in list
int sum = 0;
foreach (object o in list)
if (o.GetType() == typeof(int))
sum += (int)o;
return sum;
}
this code works fine as a stand alone code but when am trying to invoke the
"addme" function from excel by saying "=addme(10,20,30)" or "=addme(10,20)"
in the excel cell, it is not returning me the sum. All I see is "#VALUE!" in
that excel cell.
kindly let me know what should be done in this regard...