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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply

Value of last 6 months not the same

Hi.

 

 

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

Hi @ALEX2011ALfer_ ,

 

Did you mean which value is unique in the last 6 months?

Create measure via the following code and put it in filter pane on this visual and set it show items is 1, then you will see the unique value in the table.

Measure =
VAR _currentdate =
    TODAY ()
VAR _start =
    DATE ( YEAR ( _currentdate ), MONTH ( _currentdate ), 1 )
VAR _range =
    DATESINPERIOD ( 'Table'[Date], _start, -6, MONTH )
VAR _last_6_months_value =
    CALCULATETABLE ( 'Table', _range )
RETURN
    COUNTROWS ( _last_6_months_value )

 

Or you want to show the values which is not appear during last 6 months.

Value of last 6 months not the same =
VAR _currentdate =
    TODAY ()
VAR _start =
    DATE ( YEAR ( _currentdate ), MONTH ( _currentdate ), 1 )
VAR _range =
    DATESINPERIOD ( 'Table'[Date], _start, -6, MONTH )
VAR _last_6_months_value =
    CALCULATETABLE ( VALUES ( 'Table'[values] ), _range )
VAR _current_month =
    CALCULATETABLE ( VALUES ( 'Table'[values] ), DATESMTD ( 'Table'[Date] ) )
VAR _new_value =
    EXCEPT ( _current_month, _last_6_months_value )
RETURN
    CONCATENATEX ( _new_value, [values], " " )

 

Pbix file in the end you can refer.

Best Regards

Community Support Team _ chenwu zhu

 

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

2 REPLIES 2
v-chenwuz-msft
Community Support
Community Support

Hi @ALEX2011ALfer_ ,

 

Did you mean which value is unique in the last 6 months?

Create measure via the following code and put it in filter pane on this visual and set it show items is 1, then you will see the unique value in the table.

Measure =
VAR _currentdate =
    TODAY ()
VAR _start =
    DATE ( YEAR ( _currentdate ), MONTH ( _currentdate ), 1 )
VAR _range =
    DATESINPERIOD ( 'Table'[Date], _start, -6, MONTH )
VAR _last_6_months_value =
    CALCULATETABLE ( 'Table', _range )
RETURN
    COUNTROWS ( _last_6_months_value )

 

Or you want to show the values which is not appear during last 6 months.

Value of last 6 months not the same =
VAR _currentdate =
    TODAY ()
VAR _start =
    DATE ( YEAR ( _currentdate ), MONTH ( _currentdate ), 1 )
VAR _range =
    DATESINPERIOD ( 'Table'[Date], _start, -6, MONTH )
VAR _last_6_months_value =
    CALCULATETABLE ( VALUES ( 'Table'[values] ), _range )
VAR _current_month =
    CALCULATETABLE ( VALUES ( 'Table'[values] ), DATESMTD ( 'Table'[Date] ) )
VAR _new_value =
    EXCEPT ( _current_month, _last_6_months_value )
RETURN
    CONCATENATEX ( _new_value, [values], " " )

 

Pbix file in the end you can refer.

Best Regards

Community Support Team _ chenwu zhu

 

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

@ALEX2011ALfer_ You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000

Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.

https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...



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...

Helpful resources

Announcements
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.

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.

March Power BI Update Carousel

Power BI Community Update - March 2026

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