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

Show the values on row headers only

Hi Experts,

 

I need help, I need to show the total value only on row headers only.

 

Please help me to create a measure for that. 

 

For example the total value is 100 then it should show only on Charges and recoveries.

 

Please help, its urgent.

 

Swamy3105_1-1653460535130.png

 

Regards.,

Swamy

1 ACCEPTED SOLUTION

You can add another argument to the formula I previously posted.

Formula =
IF ( NOT ( HASONEVALUE ( Table[Column] ) ), [Other Measure], 0 )

 

If the result isn't what you expect, please post  a sample data anyone can simply copy paste - not an image.  How to Get Your Question Answered Quickly 





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

perfect !!!!

danextian
Super User
Super User

Hi @Anonymous ,

With just the data given, you can create a measure similar to below

My Measure =
IF ( NOT ( HASONEVALUE ( Table[Column] ) ), [Other Measure] )

Table[Column] refers to the column used after Charges and Recoveries (6925, ALLOCA_CNR, etc.).





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
Anonymous
Not applicable

Hi,

 

I want to show total value of rows in row header and row's values should be 0.

 

as shown below.

Swamy3105_0-1653463416077.png

 

You can add another argument to the formula I previously posted.

Formula =
IF ( NOT ( HASONEVALUE ( Table[Column] ) ), [Other Measure], 0 )

 

If the result isn't what you expect, please post  a sample data anyone can simply copy paste - not an image.  How to Get Your Question Answered Quickly 





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

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