Forum Discussion
Anonymous
5 years agoNot applicable
How to use date function in statment
Hello, im trying to write if statment with date function, however im getting error . the porpose for the statment to give and date before "31/12/2009" as number 0 then give following date. below ...
- Anonymous5 years ago
Hi Anonymous ,
What data type is your [Sales-DATE]?
If your [Sales-DATE] is text type, please see the following calculated column.
Base column = VAR _month = RIGHT ( LEFT ( [Sales-DATE], 5 ), 2 ) VAR _day = LEFT ( [Sales-DATE], 2 ) VAR _year = RIGHT ( [Sales-DATE], 4 ) RETURN IF ( [Sales-DATE] <> "Null", IF ( DATE ( _year, _month, _day ) <= DATE ( 2009, 12, 31 ), 0, [Year.Base] ) )Or you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file from your Onedrive for Business.
You can check the details in the attachment.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
themistoklis
5 years agoCommunity Champion
Anonymous
It seems that you are trying to achieve this using Power Query.
Go to Power Query editor --> Add Column --> Custom Column and add the following formula:
Add Custom Column = if [Sales-DATE] = null then "" else if [Sales-DATE] ) <=#date(2009, 12, 31) then 0 else [Year.Base]