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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

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
Super User
Super User

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!:
Power BI Cookbook Third Edition (Color)

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
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

Check out the October 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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