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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
samnaw
Resolver I
Resolver I

Convert sting to integer Calculate

 

Hi 

 

I have a year column that I want to keep it as string. 

 

I am currently using this DAX that works perfectly well. 

 

CY_Family_Sales = CALCULATE (
SUM ( Table_1[Sales]),
FILTER ( 'Table_1', 'Table_1'[Fiscal_Year] = "2020" ),
FILTER ( 'Table_1', 'Table_1'[loyalty_flag] = "CARD" ) )

 

I want to change year to integer. 

 

I have tried this: FILTER ( 'Table_1', 'Table_1'[Fiscal_Year] = MAX((INT('TABLE_1'[Fiscal_Year]))-1) )

I have tried this: FILTER ( 'Table_1', 'Table_1'[Fiscal_Year] = MAX((Value('TABLE_1'[Fiscal_Year]))-1) )

 

but no luck. 

 

Can someone give me a direction?

Thanks, 

Sam

 

 

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

Hi @samnaw ,

 

We should use max function first, then use value function to convert it to whole number, please try the following measure:

 

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"
    )


Best regards,

 

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

Hi @samnaw ,

 

We should use max function first, then use value function to convert it to whole number, please try the following measure:

 

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"
    )


Best regards,

 

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

Use VALUE instead of 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

Hi,

 

First, why you are keeping the Year column in STRING..?, change the Year column to INT/Whole Number,

If you want to keep that column to STRING,

try using these 2 DAX formulas

 

1. FORMAT( "2020", "General Number")

2. Value("2020")

 

Hope this will help..

 

Thanks & Regards,

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
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.