Skip to content

Instantly share code, notes, and snippets.

@DarqueWarrior
Created March 12, 2024 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DarqueWarrior/4ad119db3fb2633a3c0c879a2f04dfc6 to your computer and use it in GitHub Desktop.
Save DarqueWarrior/4ad119db3fb2633a3c0c879a2f04dfc6 to your computer and use it in GitHub Desktop.
Populates a column with ticker symbol for each row of the Fidelity transaction history download if it was an option trade.
=IF([@[Option Trade]],
MID([@Action], FIND("(", [@Action]) + 1, FIND(")", [@Action]) - FIND("(", [@Action]) - 1),
"")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment