Forum Discussion
fbostan1
4 years agoHelper I
Need Help with Between statement
I need help with this, I want to write a Dax formula in a new column for (If ORDR_DATE is between Rx Direct and Rx Direct End then "Y" else "N")? I'm referencing to the picture below. I tried ...
davehus
4 years agoMemorable Member
Use Powerquery and create a custom column. if Order_Date >=Rx Direct and Order_Date <=RX Direct End then "Y" else "N" Take note of the lower case in the if statement.