Forum Discussion

Syndicate_Admin's avatar
Syndicate_Admin
Administrator
4 years ago
Solved

Status date Calendar

Hi all, I appreciate your help with the following I need to create in my calendar table a column that indicates a status, the status depends on the date I have selected, for example if I select Marc...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi Syndicate_Admin ,

    I created some data:

    DATE(2021,1,1) -- DATE(2024,12,31)

    Here are the steps you can follow:

    1. Create calculated column.

    Column =
    IF(
        'Table'[Date]>EOMONTH(TODAY(),0)&&'Table'[Date]<=EOMONTH(TODAY(),+12),"TAM",BLANK())
    
    

    2. Result:

     

    Best Regards,

    Liu Yang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly