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
Anonymous
Not applicable

Measure context issue

Hello Everyone,

 

I am coming to you guys because I have an issue regarding a measure that I was not able to solve yet:

 

QinglongPR_0-1643907052924.png

 

What I would like is to filter Date TO Compare (FIELD of TABLE1) with the Non Context Date (Measure with ALLSELECTED(TABLE1)).

I am doing the following command: 

 

Max TEST 3 = CALCULATE(DISTINCTCOUNT(TABLE1.FIELD1), FILTER(TABLE1, TABLE1.DateToCompare <= TABLE1.NonContextDate))

 

However, it seems the Context Date is used instead of Non Context Date.

Here the result:

 

QinglongPR_1-1643907397560.png

 

Thank you, in advance, for your help.

 

 

Regards,

Thomas

 

1 ACCEPTED SOLUTION

Hi @Anonymous ,

 

NonContextDate = CALCULATE(MAX('TABLE1'[Context Date]),ALLSELECTED(TABLE1))

ALLSELECTED will cause some problem if you use it directly. You can try ALL function or you can try this code.

Max TEST 3 =
VAR _ADD =
    ADDCOLUMNS ( TABLE1, "NonContextDate", [NonContextDate] )
RETURN
    COUNTAX ( _ADD, [NonContextDate] )

Result is as below.

1.png

Best Regards,
Rico Zhou

 

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

4 REPLIES 4
lbendlin
Super User
Super User

Not clear what your actual issue is. What is the expected outcome?

 

Max TEST 3 = CALCULATE(DISTINCTCOUNT(TABLE1.FIELD1), FILTER(ALL(TABLE1), TABLE1.DateToCompare <= TABLE1.NonContextDate))
Anonymous
Not applicable

Hello @lbendlin,

 

Thank you for your time.

Expected outcome should be for the last row 1 instead of BLANK.any

NonContextDate = CALCULATE(MAX(ContextDate), ALLSELECTED(TABLE1))

But It seems it ignored the ALLSELECTED within Max TEST 3 measure.

 

 

Regards,

Thomas

Hi @Anonymous ,

 

NonContextDate = CALCULATE(MAX('TABLE1'[Context Date]),ALLSELECTED(TABLE1))

ALLSELECTED will cause some problem if you use it directly. You can try ALL function or you can try this code.

Max TEST 3 =
VAR _ADD =
    ADDCOLUMNS ( TABLE1, "NonContextDate", [NonContextDate] )
RETURN
    COUNTAX ( _ADD, [NonContextDate] )

Result is as below.

1.png

Best Regards,
Rico Zhou

 

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

 

Hi @Anonymous ,

 

NonContextDate = CALCULATE(MAX('TABLE1'[Context Date]),ALLSELECTED(TABLE1))

ALLSELECTED will cause some problem if you use it directly. You can try ALL function or you can try this code.

Max TEST 3 =
VAR _ADD =
    ADDCOLUMNS ( TABLE1, "NonContextDate", [NonContextDate] )
RETURN
    COUNTAX ( _ADD, [NonContextDate] )

Result is as below.

1.png

Best Regards,
Rico Zhou

 

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

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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