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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Tyler_Penkofski
Frequent Visitor

Modificación del contexto de evaluación: tabla de retorno ignorando el contexto de filtro actual en la medida

Hola a todos,

Estoy buscando a la comunidad para ver si puedo obtener ayuda para entender cómo hacer que la siguiente medida de trabajo:

Problema para el que estoy resolviendo: Cuenta todas las tareas que ocurrieron entre dos fechas (definidas en una segmentación de datos), más 30 días después de la fecha máxima.

Código actual para La medida:

# of SAs + 30: = 
var minDate = MIN(dimDate[Key Date])
var maxDate = MAX(dimDate[Key Date]) + 30
 /*var ValidSA = CALCULATETABLE(factTask,
                factTask[ActivityDate] >= minDate &&
                factTask[ActivityDate] <= maxDate
                ) */
RETURN
    CALCULATE( 
    [# of SAs:], 
       FILTER(ALL(factTask[ActivityDate]),
        VALUE(factTask[ActivityDate]) >= minDate &&
        VALUE(factTask[ActivityDate]) <= maxDate
        ) 
    )

Código para [a de SA] (utilizado en la medida anterior):

# of SAs: = CALCULATE(
            COUNTROWS(factTask),
                TREATAS(
                VALUES(factCampaignMember[Case_Safe_ID__c]),
                    factTask[WhoId]
            )       
)

ERD actual:

image.png

Cualquier ayuda sería muy apreciado !

4 REPLIES 4
amitchandak
Super User
Super User

Una cosa que puedes probar

# of SAs + 30: = 
var minDate = MIN(dimDate[Key Date])
var maxDate = MAX(dimDate[Key Date]) + 30
 /*var ValidSA = CALCULATETABLE(factTask,
                factTask[ActivityDate] >= minDate &&
                factTask[ActivityDate] <= maxDate
                ) */
RETURN
    CALCULATE( 
    [# of SAs:], 
       FILTER(ALL(dimDate),
        VALUE(dimDate[Key Date]) >= minDate &&
        VALUE(dimDate[Key Date]) <= maxDate
        ) 
    )
Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

¡Gracias! Esto parece funcionar, ya que ahora estoy viendo algunos resultados lógicos de la medida:

image.png

Greg_Deckler
Super User
Super User

¿Puede compartir datos de muestra? Por favor, consulte este post sobre cómo obtener su pregunta respondida rápidamente: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

Intentaría deshacerme de tus declaraciones VALUE no entiendo por qué las estás usando. Además, tal vez solo TODA la tabla en lugar de especificar una columna determinada.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Gracias Greg, eliminé VALUES() y usé una expresión de tabla en lugar de una expresión de columna en mi instrucción ALL(), que devolvió algunos valores válidos para algunos registros y valores incorrectos para otros.

Idealmente, [o de SA + 30] debe ser igual o mayor que el de SA]:

image.png

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors
Top Kudoed Authors