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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
K_Vrushali
Frequent Visitor

Total of Column

 

 

 

Hi everyone, Please help me . I need your suggestions as i can not remove this text from Total row. I just need to show total of SalesAmount and not for another column. In my case i am unable to display anykind of Total

when i activate Total in visulaization it  shows only text and not any kind of numericalvalue. 

K_Vrushali_0-1665491474446.png

Thanks in Advance 

1 ACCEPTED SOLUTION
v-yanjiang-msft
Community Support
Community Support

Hi @K_Vrushali ,

Has your problem been resolved? If not, let me show you the detailed steps. I create a sample.

vkalyjmsft_0-1666603235795.png

And a measure.

List of FullName values = MAX('Table'[Column])

Result:

vkalyjmsft_1-1666603272766.png

In the result, you don't want the List of FullName values show anything in the total row. Just create another measure.

Measure =
IF (
    ISFILTERED ( 'Table'[EnglishEducation] ),
    [List of FullName values],
    BLANK ()
)

Result:

vkalyjmsft_2-1666603428408.png

I attach my sample below for your reference.

 

Best Regards,
Community Support Team _ kalyj

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

8 REPLIES 8
v-yanjiang-msft
Community Support
Community Support

Hi @K_Vrushali ,

Has your problem been resolved? If not, let me show you the detailed steps. I create a sample.

vkalyjmsft_0-1666603235795.png

And a measure.

List of FullName values = MAX('Table'[Column])

Result:

vkalyjmsft_1-1666603272766.png

In the result, you don't want the List of FullName values show anything in the total row. Just create another measure.

Measure =
IF (
    ISFILTERED ( 'Table'[EnglishEducation] ),
    [List of FullName values],
    BLANK ()
)

Result:

vkalyjmsft_2-1666603428408.png

I attach my sample below for your reference.

 

Best Regards,
Community Support Team _ kalyj

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Ashish_Mathur
Super User
Super User

Hi,

Share the download link of your PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
shiva_dongari
Regular Visitor

Hi @K_Vrushali 

 

You can try something like below:

 

List of FullName values =

 

VAR _result = <your current logic goes here>

 

RETURN

IF(

ISFILTERED(EnglishEducation),

_result,

blank()

)

 

If this helps, please accept my response as solution. 👍👍

what can i write after Var_result = 

And how can i get a normal Total of salesAmount

You have 2 measures, one for the sales amount and one for the text "List of Fullname values"... please post those 2 and we can help you.

K_Vrushali
Frequent Visitor

Hallo dankeschön, war ist hier your Data

the measure you use to create your text,

 

see @shiva_dongari's reply 🙂

lukiz84
Memorable Member
Memorable Member

Change your Text Measure to:

 

IF (ISFILTERED(table[EnglishEducation]), yourData)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.