Forum Discussion

Maxigut1's avatar
Maxigut1
New Member
9 years ago
Solved

Formulas in a Matrix

Hi all,   Please I need help to solve the following issue because is ver important to improve my work. Is possible to calculate values from a Matrix?   I have a sales matrix summarized by Sales D...
  • v-caliao-msft's avatar
    9 years ago

    Hi Maxigut1,

     

    Yes, you can use the DAX below achieve you requirement.

     

    Var.Vs Previous Day = (Matrix[Sum Departments]-LOOKUPVALUE(Matrix[Sum Departments],Matrix[Month Day],Matrix[Month Day]-1))/LOOKUPVALUE(Matrix[Sum Departments],Matrix[Month Day],Matrix[Month Day]-1)

     

    Daily Total VS Daily Budget = Matrix[Sum Departments]-Matrix[Total Budget]

     

    Estimated month end  = Matrix[Acumulated]+(Matrix[Acumulated]/Matrix[Month Day])*(Matrix[Days in month]-Matrix[Month Day])

     

     

     

    Regards,

    Charlie Liao