Forum Discussion

Glenda's avatar
Glenda
Icon for Helper I rankHelper I
8 years ago
Solved

Using Greater than in a IF foumla

I am trying to set up a new column where 2 things must be met. One is the state and the other is depending on date. The standard formula i use in excel is not working.    Policy = IF (AND('XOX Repo...
  • Anonymous's avatar
    Anonymous
    8 years ago

    Dear Glenda

        Try this:

    Policy = IF( and(  value( W_DAY_D[Year]) = 2017,  value(FORMAT( W_DAY_D[Date], "YYYYMMDD")) < 20170901 ) ,"my True", "my False")

     

    My result