Forum Discussion
Anonymous
6 years agoNot applicable
Issue is DAX formula
Hi Experts , I am new to Power BI. My requirement is , I need to find out if Resolved date is after eg . 17/01/2020 then Flag should populate as "Y" else "N". Issue is there are records where ...
- 6 years ago
Hi,
Try this calculated column formula
=IF(Data[Resolved Date])>DATE(2020,1,17),"Y","N")
Hope this helps.
Ashish_Mathur
6 years agoSuper User
Hi,
Try this calculated column formula
=IF(Data[Resolved Date])>DATE(2020,1,17),"Y","N")
Hope this helps.