Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
hello,
this is excel formula - =IF(AND([@[QA Last Reviewed Date]]<>"",[@[QA Last Reviewed Date]]>DATE(2016,5,19)),1,0)
I am using this in power bi - =IF(AND[QA Last Reviewed Date]<>""[QA Last Reviewed Date]>DATE(2016,5,19),1,0)
but it is giving this error - DAX comparison operations do not support comparing values of type Date with values of type Text. Consider using the VALUE or FORMAT function to convert one of the values.
Please give the formula which performs same function .
thanks
Solved! Go to Solution.
@SushantSharma, try how
IF(AND( not(isblank([QA Last Reviewed Date])),[QA Last Reviewed Date]>DATE(2016,5,19)),1,0)
@SushantSharma, try how
IF(AND( not(isblank([QA Last Reviewed Date])),[QA Last Reviewed Date]>DATE(2016,5,19)),1,0)
User | Count |
---|---|
97 | |
67 | |
57 | |
47 | |
46 |