Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Convert Excel Equations into Equivalent DAX Equation to Add Calculated Column to Loaded Data
01-17-2023
11:30 AM
I am trying to convert an equation I used in excel into a DAX equation to create a calculated column to add to data table that is already loaded into Excel.
Excel Equation:
Status=IF(DATEVALUE(A5)<$D$1,"Expired",IF(DATEVALUE(A5)-30<$D$1,"Expiring","Active"))
where A5 is Expected Expiration Date and Date is = TODAY()
What would be a similar DAX equation?
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2023
12:24 PM

@alanphamvistra4, Create a calculated column in your table using DAX,
Status = SWITCH(
TRUE(),
'Date'[Expected Expiration Date] < TODAY(),
"Expired",
DATEADD('Date'[Expected Expiration Date],-30,DAY) < TODAY(),
"Expiring",
"Active"
)
Hope this helps!

Anonymous
Not applicable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2023
12:19 PM

Hi, Try this.
Column Calculated = IF(DATEVALUE([COLUMN WITH A5])<TODAY(),"EXPIRED",IF(DATEADD([COLUMN WITH A5],-30,DAY)<TODAY(),"EXPIRING","ACTIVE")

Helpful resources
Recommendations
Subject | Author | Posted | |
---|---|---|---|
12-19-2023 07:14 PM | |||
02-06-2024 12:42 PM | |||
03-08-2024 01:11 AM | |||
09-05-2022 01:28 AM | |||
11-01-2023 03:42 PM |
Featured Topics
Top Kudoed Authors (Last Month)
User | Count |
---|---|
141 | |
115 | |
82 | |
63 | |
48 |