Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi All
I have below expression working fine :-
Solved! Go to Solution.
Hi @admin11
You can create a table, column Month in the table is related to specific number, then switch the specific number according to column Month.
Create the column:
Show Last 24 Month =
VAR _month =
MONTH ( TODAY () )
VAR _num =
CALCULATE (
SELECTEDVALUE ( 'Table'[Value] ),
FILTER ( 'Table', MONTH ( 'Table'[Month] ) = _month )
)
RETURN
IF ( 'Date'[Date] >= EDATE ( TODAY (), _num ), 1, 0 )
result:
See sample file attached bellow.
By the way, I don’t understand why you named the DAX column as Show Last 24 Month since you want the data of the past 25,26,27… months, is there anything wrong?
Best Regards,
Community Support Team _ Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
@admin11 , I think you are starting from fix date of 1 April 2019
Show Last 24 Month = IF ('Date'[Date] >= date(2019,04,01) , 1, 0)
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!