Forum Discussion
shadowsinger
Microsoft
Jan 15, 2026Formula columns in classic Outlook - count of recipients?
Rather than the standard "to" column that shows the names of everyone the email was sent to, I would like to see a count of aliases the email was addressed to. Is this something that can be done with...
Hornblower409
Jan 16, 2026Iron Contributor
View -> View Settings
[Columns]
[New Column]
Name: RepCount
Type: Formula
Formula:
"To: " & IIF(Len([To]), Len([To]) - Len(Replace([To],";","")) + 1, 0) & ", CC: " & IIF(Len([CC]), Len([CC]) - Len(Replace([CC],";","")) + 1, 0) & ", BCC: " & IIF(Len([BCC]), Len([BCC]) - Len(Replace([BCC],";","")) + 1, 0)