Forum Discussion
Column with previous date
Hello!
i am currently using this DAX as a calculated column to return the previous periods usertotal:
Prev_Date =
VAR CompanyID = table[companyId]
VAR Date1 = table[Date]
VAR Pre_Date = CALCULATE(MAX(table[Date]),FILTER(table,table[companyId]=CompanyID),FILTER(table,table[Date]<Date1))
VAR Prev_Val = CALCULATE(MAX(table[UsersTotal]),FILTER(table,table[companyId]=CompanyID),FILTER(table,table[Date]=Pre_Date))
RETURN IF(Prev_Val=BLANK(),0,Prev_Val)
What I would like to do is adjust this DAX to return the prevous period date rather then the user total
How can I adjust this DAX to return the prevous Date?
Why can't you just return the Pre_Date variable? It seems you've already calculated it. Just chang the last line to Pre_Date and get rid of the IF() statement.
3 Replies
- edhansCommunity Champion
Why can't you just return the Pre_Date variable? It seems you've already calculated it. Just chang the last line to Pre_Date and get rid of the IF() statement.
- AnonymousNot applicable
I literally did that and it didnt work, I just retried and it worked thank you
- edhansCommunity Champion
Excellent! Probably some comma or space messing it up the first time you tried.