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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

How to mutiply data for the matrix table

Hi all,

 

I have two tables like :

 

How can I do this mutiplication :

 

Also if any value is empty or 0 , how can it displayed as 0 here?

Can someone explain this with help of both Measures / Custom column?

 

Update :

I am able to Create a Custom table like below and I can get below results, but this seems takes lot of data. can anyone help me for a creating custom measure ?

 

Custom Table :

Summary = SUMMARIZE('Fact','Fact'[MUID],'Fact'[Category],"Frequency",COUNTX('Fact',COUNT('Fact'[TBID])),"MF",COUNTX('Fact',COUNT('Fact'[TBID]))* (ALLSELECTED(tb_weights[Weight])))
 
Screenshot :

skondi_0-1605018633385.png

 

 

 

 

 

 

1 REPLY 1
Greg_Deckler
Community Champion
Community Champion

@Anonymous Seems like you would want to create a measure for this, not sure where the 6 is coming from.  You could use LOOKUPVALUE or just MAX if the tables are related. In that measure, you could ensure that you get zeros as well doing something like:

Measure = 
  VAR __Calc = <some calculation>
RETURN
  IF(ISBLANK(__Calc),0,__Calc)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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.

Top Solution Authors