This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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 Department & by Day.
I need to calculate green & blue columns:
A- Green: 1- % Total sales variance from previous day.
2- Total sales of the day vs budget.
B-Blue: 3- Estimated month en close. (Acumulated amount+ Avereage sales * (Days in month-current day))
I really appreciate your help.
Thanks & Regards,
Solved! Go to Solution.
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
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
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 26 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 36 | |
| 32 | |
| 25 | |
| 23 |