web services - Disable excel UDF calculation in "insert function" prompt -


is there way disable excel udf function (i´m using excel dna library) when called "insert function" prompt?

my excel ufd function makes webservice calls , behavior on "insert function" prompt overloading server (as each user typing invoke function).

does know how disable function?

you can detect function being called insert function dialog calling exceldnautil.isinfunctionwizard(). you'll have like:

public static object slowfunction()  {      if (exceldnautil.isinfunctionwizard())          return "!!! in function wizard";       // real work otherwise ....  } 

Comments

Popular posts from this blog

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

java - Could not locate OpenAL library -

sorting - opencl Bitonic sort with 64 bits keys -