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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Narukkp
Helper V
Helper V

Required IsLast month and IsNext month for direct query in Power BI desktop

Hi Team,

I have few rows in my dataset with columns as Name and EndDate. For this data set required calculate columns like Last month and Next month (Suppose today date is 20/01/2019). My Data set is Direct Query mode. I required calculated columns only because they need to filter the data based on this flag columns.

 

NameEnd DateIsCurrentMonthIsLastMonthIsNextMonth
A25/01/2019100
B18/12/2018010
C24/02/2019001
D20/01/2019100
1 ACCEPTED SOLUTION
v-lili6-msft
Community Support
Community Support

hi, @Narukkp

You could use these three formulas to add three calculate columns

new IsCurrentMonth = 
IF (
    YEAR ( Table1[End Date] ) * 100
        + MONTH ( Table1[End Date] )
        = YEAR ( TODAY () ) * 100
            + MONTH ( TODAY () ),
    1,
    0
)
new IsLastMonth = 
IF (
    YEAR ( Table1[End Date] ) * 100
        + MONTH ( Table1[End Date] )
        = IF (
            MONTH ( TODAY () ) = 1,
            ( YEAR ( TODAY () ) - 1 ) * 100 + 12,
            YEAR ( TODAY () ) * 100
                + MONTH ( TODAY () ) - 1
        ),
    1,
    0
)
new IsNextMonth = 
IF (
    YEAR ( Table1[End Date] ) * 100
        + MONTH ( Table1[End Date] )
        = IF (
            MONTH ( TODAY () ) = 12,
            ( YEAR ( TODAY () ) + 1 ) * 100 + 1,
            YEAR ( TODAY () ) * 100
                + MONTH ( TODAY () ) + 1
        ),
    1,
    0
)

Best Regards,

Lin

 

 

Community Support Team _ Lin
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-lili6-msft
Community Support
Community Support

hi, @Narukkp

You could use these three formulas to add three calculate columns

new IsCurrentMonth = 
IF (
    YEAR ( Table1[End Date] ) * 100
        + MONTH ( Table1[End Date] )
        = YEAR ( TODAY () ) * 100
            + MONTH ( TODAY () ),
    1,
    0
)
new IsLastMonth = 
IF (
    YEAR ( Table1[End Date] ) * 100
        + MONTH ( Table1[End Date] )
        = IF (
            MONTH ( TODAY () ) = 1,
            ( YEAR ( TODAY () ) - 1 ) * 100 + 12,
            YEAR ( TODAY () ) * 100
                + MONTH ( TODAY () ) - 1
        ),
    1,
    0
)
new IsNextMonth = 
IF (
    YEAR ( Table1[End Date] ) * 100
        + MONTH ( Table1[End Date] )
        = IF (
            MONTH ( TODAY () ) = 12,
            ( YEAR ( TODAY () ) + 1 ) * 100 + 1,
            YEAR ( TODAY () ) * 100
                + MONTH ( TODAY () ) + 1
        ),
    1,
    0
)

Best Regards,

Lin

 

 

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

Thank you 

Narukkp
Helper V
Helper V

Any idea about this ???

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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