Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
Anonymous
Not applicable

Create customised matrix table based on another matrix table

Hi,

I have created a matrix table like this:

 

22222.png

 

Now, I would like to use the values and apply a formula. Then, visualize this in another matrix table with the same column name and row name. For example (first row, first two dates) : (36*100/323) - 100  = -88.9 % and so on...

 

My question is, how can I use the value from the table and apply the formula. Then display the result in another table?

 
2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

 

Did the last reply solve your problem? Please consider mark the answer as solution if it works.

 

Best Regards,

Jay

mwegener
Most Valuable Professional
Most Valuable Professional

Hi @Anonymous ,

 

You have to write the formula as a DAX measure. Something like that...

MyCalc =
VAR _DAY =
    SUM ( Table[Value] )
VAR _PREV_DAY =
    CALCULATE ( SUM ( Table[Value] ), DATEADD ( 'Date'[Date], -1, DAY ) )
RETURN
    DIVIDE ( _DAY * 100, _PREV_DAY ) - 100

 

 

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.