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
Parthsh93
Helper IV
Helper IV

Not able to get totals in Power BI

I want to understand, why I am not getting totals in some senarios in the table. Why does this happen and what I must do to avoid this?

The measures I used are:

1.

0_Last week Cost of Freight =
VAR CurrentWeek = SELECTEDVALUE('dDate'[Week No.])
VAR CurrentYear = SELECTEDVALUE('dDate'[Year])
VAR MaxWeekNumber = CALCULATE(MAX('dDate'[Week No.]),ALL('dDate'))

RETURN

CALCULATE([Cost of Freight],FILTER(ALL('dDate'),IF(CurrentWeek=1,
'dDate'[Week No.] = MaxWeekNumber && 'dDate'[Year] = CurrentYear-1,
'dDate'[Week No.] = CurrentWeek-1 && 'dDate'[Year] = CurrentYear))
)
2. Cost of Freight = SUM('fKPI 2019'[Load Charge])
3. 0_Weekly change of cost = [Cost of Freight]-[0_Last week Cost of Freight]

Totals not showingTotals not showingTotals Showing_2.PNG
Totals is showingTotals is showing

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @Parthsh93 

In the Total row there are no filters applied. Your SELECTEDVALUE expressions will thus return blank, since there is more than one value in the specified column (see https://dax.guide/selectedvalue/  )

You will either have to update the code of the meausures to take this into account or create another one based on what you have. This is assuming you have  'dDate'[Week No.] and 'dDate'[Year] in the rows of your visual:

0_Last week Cost of Freight_TOTAL =
SUMX(SUMMARIZE('dDate', 'dDate'[Week No.], 'dDate'[Year]), [0_Last week Cost of Freight])

 

Please mark the question solved when done and consider giving kudos if posts are helpful.

 Cheers 

SU18_powerbi_badge

View solution in original post

3 REPLIES 3
AlB
Super User
Super User

Hi @Parthsh93 

In the Total row there are no filters applied. Your SELECTEDVALUE expressions will thus return blank, since there is more than one value in the specified column (see https://dax.guide/selectedvalue/  )

You will either have to update the code of the meausures to take this into account or create another one based on what you have. This is assuming you have  'dDate'[Week No.] and 'dDate'[Year] in the rows of your visual:

0_Last week Cost of Freight_TOTAL =
SUMX(SUMMARIZE('dDate', 'dDate'[Week No.], 'dDate'[Year]), [0_Last week Cost of Freight])

 

Please mark the question solved when done and consider giving kudos if posts are helpful.

 Cheers 

SU18_powerbi_badge

@AlB 

The same problem still exist while using a different formula, I want to understand why does this happen.

 

1. _Loadability by cases per trips =
CALCULATE(
DIVIDE([0_Total Volume Shipped by Cases],[0_Total Shipments],BLANK())

)

2. last month loadability BCPT =

CALCULATE(

[ _Loadability by cases per trips ],DATEADD(dDate[Date],-1,MONTH))

3. Trips saved VS last Month =

CALCULATE(
IF([last month loadability BCPT]=0,BLANK(),
CALCULATE(
(DIVIDE
([0_Total Volume Shipped by Cases],[last month loadability BCPT],BLANK())-[0_Total Shipments])

)))

 

Totals Not Showing.2.PNG

@AlBThank you, It worked.

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.