Skip to main content
Question

Social Media Platform Calendar

  • March 11, 2026
  • 2 replies
  • 18 views

Forum|alt.badge.img+1

I’m trying to create a social media calendar view that shows posts colored by platform. The issue I’m facing is one post record may contain several platforms. The only way I can figure this out is by creating a new post record for every platform the post will go on, but that is redundant. Does anyone have a calendar view that shows social posts colored by platform? Or a similar way to set this up?

2 replies

TheTimeSavingCo
Forum|alt.badge.img+31

I don’t think that’s possible I’m afraid.  Not as good as colors, but what if we created a formula field that would output emojis of a specific emoji based on the platforms?  Then it’d look something like this maybe:

 

IF(
FIND('Instagram', Platform),
'🔴'
) &
IF(
FIND('X', Platform),
'🟢'
) &

IF(
FIND('TikTok', Platform),
'🔵'
)


Emojis

 

Color circles:


Forum|alt.badge.img+1
  • Author
  • New Participant
  • March 11, 2026

@TheTimeSavingCo Thanks for this! I assumed the color coding was impossible, but wanted to make sure I wasn’t missing anything.