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

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply
Moof
Frequent Visitor

Using SWITCH in a Filter Context

So I'm trying to create a table that has a YTD and MTD column, based on a measure that filters from a report spec.

 

The table I'm trying to create looks like this (apologies for the Spanish):

 

2018-11-12 19_04_33-Informes Financieros - Power BI Desktop.png

 

Where Cifra de Negocio is defined as a measure:

 

Cifra de Negocio = 
CALCULATE ( SUM ( 'Transacciones Control de Gestion'[Valor Contable] ), FILTER ( 'Informes', 'Informes'[Nivel 1] = "CIFRA DE NEGOCIO" ) )

And Cifra de Negocio Año Anterior is defined as the following measure:

 

Cifra De Negocio Año Anterior = 
CALCULATE (
    [Cifra De Negocio],
    SAMEPERIODLASTYEAR ( Fechas[Fecha] )
)

Transacciones Control de Gestión is a filtered table that contains all my transactions. Informes contains a report specification, which maps to a number of different account numbers that are related to Transacciones Control de Gestión. 

 

In the table, Mes and Año are the spanish versions of MTD and YTD.

 

So I try to rewrite Cifra de Negocio as:

 

Cifra De Negocio =
CALCULATE (
    SUM ( 'Transacciones Control de Gestion'[Valor Contable] ),
    FILTER (
        'Informes',
        'Informes'[Nivel 1] = "CIFRA DE NEGOCIO"
    ),
    IF (
        ISFILTERED ( 'Periodos en Curso'[Periodo] ),
        SWITCH (
            VALUES ( 'Periodos en Curso'[Periodo] ),
            "Mes", DATESMTD ( Fechas[Fecha] ),
            "Año", DATESYTD ( Fechas[Fecha] ),
            ALLSELECTED ( Fechas[Fecha] )
        ),
        ALLSELECTED ( Fechas[Fecha] )
    )
)

But I get the error "A function 'DATESYTD' has been used in a True/False expression that is used as a table filter expression. This is not allowed."

 

I've eventually ended up replacing that measure with:

 

Cifra De Negocio =
IF (
    ISFILTERED ( 'Periodos en Curso'[Periodo] ),
    SWITCH (
        VALUES ( 'Periodos en Curso'[Periodo] ),
        "Mes", TOTALMTD (
            SUM ( 'Transacciones Control de Gestion'[Valor Contable] ),
            Fechas[Fecha],
            FILTER (
                'Informes',
                'Informes'[Nivel 1] = "CIFRA DE NEGOCIO"
            )
        ),
        "Año", TOTALYTD (
            SUM ( 'Transacciones Control de Gestion'[Valor Contable] ),
            Fechas[Fecha],
            FILTER (
                'Informes',
                'Informes'[Nivel 1] = "CIFRA DE NEGOCIO"
            )
        )
    ),
    CALCULATE (
        SUM ( 'Transacciones Control de Gestion'[Valor Contable] ),
        ALLSELECTED ( Fechas[Fecha] ),
        FILTER (
            'Informes',
            'Informes'[Nivel 1] = "CIFRA DE NEGOCIO"
        )
    )
)

Which seems, at best, a very long-winded way of doing things.

 

My question is twofold:

  • Why can I not use a logical function to choose a flow control function? Is there a way to encapsulate the filter, or delay evaluation until the SWITCH or IF is evaluated in the row context?
  • What is the best way to reduce my current approach so that it's less repetitive and more readable?

 

1 REPLY 1
v-cherch-msft
Microsoft Employee
Microsoft Employee

Hi @Moof

 

In  CALCULATE() function, the  parameter can be a True/False expression. But you need to put a filted table context. For your requirement, you may try to use VAR Function to optimize your formula. Below is the article for your reference. 

 

https://www.sqlbi.com/articles/variables-in-dax/

 

Regards,

Cherie

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

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.