Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

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 = CAL...
  • edhans's avatar
    6 years ago

    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.