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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
afrutos
Resolver I
Resolver I

total column table

afrutos_0-1644497414062.png

 

Hi everyone,
I have a question here.
I would like to know if i can change the format of a total in a column.
I just want the total for "Remanente" column and for "Pago Pendiente" but not for the others.
I know i can use a text field coloured in white, but this is not the solution i want, because if I filter by a Year, my table is smaller so the text field won't be useful here. 

Thanks in advanced!

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

Hi, @afrutos ;

If you create the measure by dax ,you could use sum() or ISINSCOPE().

Here i use sum 

pagado = 
VAR  _SUM= CALCULATE(SUM([importeAprobado])-SUM([Importe Pagado ]),FILTER('Table',[cate]="A"))
RETURN IF(_SUM=BLANK(),0,_SUM)
remanen = 
VAR  _SUM= CALCULATE(SUM([importeAprobado])-SUM([Importe Pagado ]),FILTER('Table',[cate]="B"))
RETURN IF(_SUM=BLANK(),0,_SUM)

The final output is shown below:

vyalanwumsft_0-1644911508918.png

Or use:

IF(ISINSCOPE('Table'[cate])

if not right,can you share me a simple file and the output what you want  ?
Best Regards,
Community Support Team_ Yalan Wu
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

2 REPLIES 2
v-yalanwu-msft
Community Support
Community Support

Hi, @afrutos ;

If you create the measure by dax ,you could use sum() or ISINSCOPE().

Here i use sum 

pagado = 
VAR  _SUM= CALCULATE(SUM([importeAprobado])-SUM([Importe Pagado ]),FILTER('Table',[cate]="A"))
RETURN IF(_SUM=BLANK(),0,_SUM)
remanen = 
VAR  _SUM= CALCULATE(SUM([importeAprobado])-SUM([Importe Pagado ]),FILTER('Table',[cate]="B"))
RETURN IF(_SUM=BLANK(),0,_SUM)

The final output is shown below:

vyalanwumsft_0-1644911508918.png

Or use:

IF(ISINSCOPE('Table'[cate])

if not right,can you share me a simple file and the output what you want  ?
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@afrutos , isinscope , isfiltered and hasonevalue can help in getting access to grand total. But I doubt you can change the format without making it as text

https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/

https://powerpivotpro.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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.

Top Solution Authors
Top Kudoed Authors