I am trying to save excel sheet with below formula but it always creates @ prefix.
check = workbookActive[excelColumns[len(args.input_files)+1]+str(i)]
check.value = '=_xlfn.IF(_xlfn.AND(C{}:{}{}=B{}),{},{})'.format(i,excelColumns[len(args.input_files)],i,i,'"Match"','"MisMatch"')
This is what I am getting in excel sheet:
=IF(AND(@C11:D11=B11),"Match","MisMatch")
I tried using _xlfn but seems to not solve the issue