You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could be great with support for the SUBSTITUTE function.
I was able to get the substitute to work by adding the substitute function to koala/excellib.py
def substitute(*args):
if tuple(flatten(args)) != args:
return ExcelError('#VALUE', 'Could not process arguments %s' % (args))
cat_string = str(args[0]).replace(str(args[1]), str(args[2]))
return cat_string
The text was updated successfully, but these errors were encountered:
Could be great with support for the SUBSTITUTE function.
I was able to get the substitute to work by adding the substitute function to koala/excellib.py
The text was updated successfully, but these errors were encountered: