Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
ttcalendar
Frequent Visitor

Calculating Status based on Two Dynamic Dates

Hi,

 

I would like to create a DAX measure to to define the customer sales status based on their last order date.

 

We have 4 statuses:

Active:  Last Order Date between Today and Last 12 months

Passive: Last Order Date between 12 months ago and 24 months ago

Dormant: Last Order Date greater than 24 months ago

Inactive: Never placed an order

 

I have created a measure for Last Order Date: LASTDATE(SalesOrders[CreatedDate])

 

In SQL I have this created as per below, but not sure how to translate into a DAX formula.

 

CASE
WHEN LastOrder.EffectiveDate between dateadd(month,-24,getdate()) and dateadd(month,-12,getdate()) THEN 'Passive'
WHEN LastOrder.EffectiveDate between dateadd(month,-12,getdate()) and getdate() THEN 'Active'
WHEN LastOrder.EffectiveDate < dateadd(month,-24,getdate()) THEN 'Dormant'
WHEN LastOrder.EffectiveDate IS NULL THEN 'Inactive'
END AS CRMtier,

 

 

 

Many thanks,

J

1 REPLY 1
ERD
Community Champion
Community Champion

Hi @ttcalendar ,

you can use SWITCH and DATEADD functions.

If this post helps, then please consider Accept it as the solution ✔️to help the other members find it more quickly.

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.

Check out my latest demo report in the data story gallery.

Stand with Ukraine!


Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/

Thank you!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.