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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
samnaw
Resolver I
Resolver I

Convertir picadura en entero Calcular

Hola

Tengo una columna de año que quiero mantener como cadena.

Actualmente estoy usando este DAX que funciona perfectamente bien.

CY_Family_Sales - CALCULAR (
SUM ( Table_1[Ventas]),
FILTRO ( 'Table_1', 'Table_1'[Fiscal_Year] - "2020" ),
FILTRO ( 'Table_1', 'Table_1'[loyalty_flag] - "TARJETA" )

Quiero cambiar año a entero.

He intentado esto: FILTRO ( 'Table_1', 'Table_1'[Fiscal_Year] - MAX((INT('TABLE_1'[Fiscal_Year]))-1) )

He probado esto: FILTRO ( 'Table_1', 'Table_1'[Fiscal_Year] - MAX(('TABLE_1'[Fiscal_Year]))-1) )

pero no hay suerte.

¿Puede alguien darme una dirección?

Gracias

Sam

1 ACCEPTED SOLUTION
v-lid-msft
Community Support
Community Support

Hola @samnaw ,

Debemos usar la función max primero, luego usar la función de valor para convertirlo en número entero, intente la siguiente medida:

LY_Family_Sales =
VAR LY =
    VALUE ( MAX ( 'Table_1'[Fiscal_Year] ) ) - 1
RETURN
    CALCULATE (
        SUM ( Table_1[Sales] ),
        'Table_1'[Fiscal_Year] = "" & LY,
        'Table_1'[loyalty_flag] = "CARD"
    )


Saludos

Community Support Team _ Dong Li
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
v-lid-msft
Community Support
Community Support

Hola @samnaw ,

Debemos usar la función max primero, luego usar la función de valor para convertirlo en número entero, intente la siguiente medida:

LY_Family_Sales =
VAR LY =
    VALUE ( MAX ( 'Table_1'[Fiscal_Year] ) ) - 1
RETURN
    CALCULATE (
        SUM ( Table_1[Sales] ),
        'Table_1'[Fiscal_Year] = "" & LY,
        'Table_1'[loyalty_flag] = "CARD"
    )


Saludos

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

Utilice VALUE en lugar de INT



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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
mohammedadnant
Impactful Individual
Impactful Individual

Hola

En primer lugar, ¿por qué mantiene la columna Año en STRING..?, cambie la columna Año a INT/Número entero,

Si desea mantener esa columna en STRING,

tratar de usar estas 2 fórmulas DAX

1. FORMATO( "2020", "Número general")

2. Valor("2020")

Espero que esto ayude..

Gracias y saludos,

Mohammed Adnan

Did I answer your question? Mark my post as a solution! Appreciate your Kudos!! !!

Thanks & Regards,
Mohammed Adnan
Learn Power BI: https://www.youtube.com/c/taik18

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.