Applescript to turn on Track Changes in MS Word

Hello,

I’ve tried a few things that haven’t work. I need a script that will turn on Track Changes in MS Word (the Track Changes toggle is in the Review tab). This is part of a workflow and this script would come directly after another I already have that launches MS Word (i.e. I’m not sure this script would still need the “activate” command).

https://ibb.co/QpN3ks6

Thanks in advance.

tell application "Microsoft Word"
	set track revisions of active document to true
end tell

Fantastic. Thank you!