Forum Discussion
ArchStanton
4 years agoPower Participant
Simple IF Statement
Hi,
I want a calculated column just to tell me whether the date in a column within the same table is Greater than a speific date:
I don't want a measure and I don't want this linked to my date table, I just need a column to say "Yes" or "No" thats all.
How do I go about it?
Thanks,
Hi ArchStanton ,
You issue is with the date that you inputed try the following metric:
YTD = IF( 'Cases'[pre_resolutiondate]) > DATE(2022, 3, 31), "Yes", "No")
2 Replies
- MFelixSuper User
Hi ArchStanton ,
You issue is with the date that you inputed try the following metric:
YTD = IF( 'Cases'[pre_resolutiondate]) > DATE(2022, 3, 31), "Yes", "No") - ArchStantonPower Participant
Brilliant - many thanks!!