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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

A matrix is calculating the wrong total

The issue,

 

The column total is wrong.

 

First I am calculating the number of days (Measure: Dagen D) each year for each Num_VOORZ.

I'm using the measure DAGEN D in Measure Verlichting VI.

For each individual "NUM_VOORZ" the calculation is right but when I filter two or more items the calculation of the total is wrong.

 

 

 

 

 

 

 

Dagen D = 
VAR _fact =
    FILTER (
        GENERATE ( Tabel, DATESBETWEEN ( 'Dimdate 4'[Date],Tabel[DAT_BEGIN], Tabel[DAT_EIND] ) ),
        [Date] <> Tabel[DAT_BEGIN]
            && [Date] <> Tabel[DAT_EIND]
    )
VAR _calendar =
    ADDCOLUMNS (
        'Dimdate 4',
        "count", COUNTX ( FILTER ( _fact, [Date] = EARLIER ( 'Dimdate 4'[Date] ) ), [Date] )
    )
RETURN
    SUMX ( _calendar, [count] )
Verplichting VI =

CALCULATE(

IF(SELECTEDVALUE('Tabel'[COD_BETNAT])="ZIN" && SELECTEDVALUE('Tabel'[Freq])="Per week" && SELECTEDVALUE('Tabel'[Zorgeenheid])="Minuut",

((MAX('Tabel'[NUM_ZORGVOL])*(MAX('Tabel'[BED_TARIEF]))*[Dagen D])/7)/100,

BLANK()))

 

 

 

 

 

 

The .pbix file:

https://we.tl/t-ASGG9JY3if 

 

1 ACCEPTED SOLUTION

Hi, @Anonymous 

I think you need to create a new measure to replace your original measure 'Verplichting VI':

New_Verplichting VI = SUMX(Tabel,[Verplichting VI])

Snipaste_2022-01-12_16-15-21.png

Best Regards,
Community Support Team _ Eason
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

3 REPLIES 3
Anonymous
Not applicable

Hi @VahidDM  , 

Thank you for your response.

 

“Verplichting” is an estimate of the costs for each “NUM_VOORZ” within a time period (calculated by DAYS)  (per year, per month, per day ) of a service of a local government. This service depends of several variables (see pbix example) :

COD_BETNAT

Freq

Zorgeenheid

NUM_ZORGVOL

BED_TARIEF

Dagen D

The calculation “Verplichting VI” must show the costs for each “Num Voorz” in each time period on the rows (works perfect) and the costs per selected time period in the column total.

madepassionned_0-1641794777593.jpeg

You can see here that the totals per column are wrong !

The calculation of Dagen D works fine as you can see:

madepassionned_1-1641794777595.jpeg

There is an attachment of the pbix in the following link:

https://we.tl/t-CesCtzPM94

Hi, @Anonymous 

I think you need to create a new measure to replace your original measure 'Verplichting VI':

New_Verplichting VI = SUMX(Tabel,[Verplichting VI])

Snipaste_2022-01-12_16-15-21.png

Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

VahidDM
Super User
Super User

Hi @Anonymous 

 

Can you add more details about what you want to be calculated with those measures? 

 


Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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