Created
March 12, 2024 01:36
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=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