Forum Discussion
Anonymous
7 years agoNot applicable
DATE/VALUE error with IF & OR statement
Hi everyone, I have an IF & OR statement te syntax is below and I am getting the following error "DAX comparison operations do not support comparing values of type Date with values of type Text. ...
- 7 years ago
Anonymous Please try this...
Result = IF(IFERROR(SEARCH("/",Test59StrDate[Enrollment],4),0)>0,IF(VALUE(FORMAT(Test59StrDate[Enrollment],"Short Date"))>=Test59StrDate[Outreach],"Yes","No"),"No")
petrovnikitamai
7 years agoResolver V
i'm not sure but try this
new column =
IF([Date of student enrollment ]=BLANK() ||
[Date of student enrollment]="NULL" ||
[Date of student enrollment ]="-" ||
[Date of student enrollment] ||
[Date of student enrollment]="na","No",
IF(DATEVALUE([Date of student enrollment ])>=DATEVALUE([Date of student outreach]),"Yes","No"))
- Anonymous7 years agoNot applicableUnfortunately, that still came up with an error