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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply

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, @madepassionned 

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

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, @madepassionned 

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 @madepassionned 

 

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors