How can I add functions in excel templates (XLT)

R

reework

Hi,

I need to add functions/conditions to my excel templates. For example,
check if it alphanumeric, length of the field.

I would appreciate if someone can direct me to some link or suggest
steps.

Thanks in advance.
 
D

Dave Peterson

You may want to just use built in functions:

=istext(a1)
=isnumber(a1)
=len(a1)

Or maybe you mean data|validation???
 
Top