I'm trying to pull from a table of email opens, the dates for when someone becomes inactive (no opens in 90 days) and when they reactivate (the date of an open ending a period of inactivity).
I already was able to pull the most recent reactivation date by using the below dax formula:
Reactivation Date 1 = MAXX(RELATEDTABLE('Opens Table'), 'Opens Table'[Reactivation Date (90 days)])
I already have a populated Opens Table and I have a list of users in a User Table.