how to show birthdays on a calendar card; i have day and month information

i have 2 fields: birth day and birth month, i am try to create a birthday card that shows all birthdays on it.

how?

Best Answer

  • keithhickman07
    Answer ✓

    Just curious, are you running a Beastmode, or using Workbench (either a transform or query)? 

     

    Try updating the last formatting clause in your Concat string as '%m/%d/%Y' vs '%m%d%Y' (notice the backslashes). 

     

    Hope this helps! 

Answers

  • i created the following calculated field to show in a table and get a msg "could not be loaded, please try again"

    STR_TO_DATE(CONCAT(`birthMonth:number`,'/',`birthDay:number`,'/', YEAR(CURRENT_DATE())), '%m%d%Y')

  • keithhickman07
    Answer ✓

    Just curious, are you running a Beastmode, or using Workbench (either a transform or query)? 

     

    Try updating the last formatting clause in your Concat string as '%m/%d/%Y' vs '%m%d%Y' (notice the backslashes). 

     

    Hope this helps! 

This discussion has been closed.