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
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
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.

Top Solution Authors