Hi Aspose team,
We’ve found an issue with one of the fields in our document:
Syntax_template.zip (9.2 KB)
The problem is caused by comma and fields returns SyntaxError in word. However, updating the field in Word gives correct result. It is not working when done programatically, please see the example code:
var source = new Document(@"Input//Syntax_template.dotx");
source.UpdateFields();
foreach (var field in source.Range.Fields.Where(f => f.Type == FieldType.FieldFormula))
{
field.Update();
}
source.Save("Output//Results.docx");
Please let me know if you need any more details.
Thanks,
Mateusz