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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
masplin
Impactful Individual
Impactful Individual

Foxed why ALL calculation not working

I'm struggling ot understand why this code is not filling in the blanks in this matrix. I was expecting on the row 7:00 it would add up the amounts for both dates which = 6 and put 6 in the Measure 2 value for both dates? 

 

Measure 2 = 
VAR TableVar =
    ADDCOLUMNS (
        SUMMARIZE ( ATEs, 'Time'[TimeKey],'Date'[Date] ),
        "ATEs", ATEs[ATE Count]
            
    )
RETURN
CALCULATE(
   SUMX(TableVar,  [ATEs]),ALL('Date'))

Matrix.png

 

The ATE table looks like this. TimeKey and Date are just standard Date and Time master tables. [ATE Count] is just a countrows on ATE table. 

ATE.png

 

Any clues appreciated

Mike

1 ACCEPTED SOLUTION

Hi @masplin ,

I don't know if it is the result you want. You need to create the following date table.

Date = CALENDAR(MIN('ATEs'[ATEDate]),MAX('ATEs'[ATEDate]))  

Then create the following measure:

Measure 2 =
VAR TableVar =
    CALCULATETABLE (
        ADDCOLUMNS (
            SUMMARIZE ( ATEs, 'Time'[TimeKey], 'Date'[Date] ),
            "ATEs", ATEs[ATE Count]
        ),
        ALL ( 'Date' )
    )
RETURN
    CALCULATE ( CALCULATE ( SUMX ( TableVar, [ATEs] ), ALL ( 'Date' ) ) )

Results are as follows:

31.PNG

Here is a demo, please try it:

https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EQA5J8f9iMVMlgUe0d...

Best Regards,

Community Support Team _ Joey
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

5 REPLIES 5
VijayP
Super User
Super User

Some times We all miss some basic thing. Please check the relation ship of all tables is it intact?




Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
MY Blog || My YouTube Channel || Connect with me on Linkedin || My Latest Data Story - Ageing Analysis

Proud to be a Super User!


masplin
Impactful Individual
Impactful Individual

yep or the first column wouldn't have worked

 

tables.png

Hi @masplin ,

I don't know if it is the result you want. You need to create the following date table.

Date = CALENDAR(MIN('ATEs'[ATEDate]),MAX('ATEs'[ATEDate]))  

Then create the following measure:

Measure 2 =
VAR TableVar =
    CALCULATETABLE (
        ADDCOLUMNS (
            SUMMARIZE ( ATEs, 'Time'[TimeKey], 'Date'[Date] ),
            "ATEs", ATEs[ATE Count]
        ),
        ALL ( 'Date' )
    )
RETURN
    CALCULATE ( CALCULATE ( SUMX ( TableVar, [ATEs] ), ALL ( 'Date' ) ) )

Results are as follows:

31.PNG

Here is a demo, please try it:

https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EQA5J8f9iMVMlgUe0d...

Best Regards,

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

Ah is it that in my measure my TableVAR is picking up the context of the column/row of each cell i.e. a single date and time so there  is nothing to add up. You VAR measure is creating a table for the whole set of dates for each time?

Hi @masplin ,

Yes, you are right, in fact, the formula can be simplified to this:

Measure 2 =
VAR TableVar =
    CALCULATETABLE (
        ADDCOLUMNS (
            SUMMARIZE ( ATEs, 'Time'[TimeKey], 'Date'[Date] ),
            "ATEs", ATEs[ATE Count]
        ),
        ALL ( 'Date' )
    )
RETURN
    SUMX ( TableVar, [ATEs] )

Best Regards,

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

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.