The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I want to create a calculated column if the record is created last month
Solved! Go to Solution.
IsLastMonth =
IF (
(
YEAR ( Table[date] ) = YEAR ( TODAY () )
&& MONTH ( Table[date] )
= ( MONTH ( TODAY () ) - 1 )
)
|| (
YEAR ( Table[date] )
= ( YEAR ( TODAY () ) - 1 )
&& MONTH ( Table[date] ) = 12
&& ( MONTH ( TODAY () ) = 1 )
),
"Y",
"N"
)
The second part of the if is just to account for January and December
Please mark the question solved when done and consider giving kudos if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
IsLastMonth =
IF (
(
YEAR ( Table[date] ) = YEAR ( TODAY () )
&& MONTH ( Table[date] )
= ( MONTH ( TODAY () ) - 1 )
)
|| (
YEAR ( Table[date] )
= ( YEAR ( TODAY () ) - 1 )
&& MONTH ( Table[date] ) = 12
&& ( MONTH ( TODAY () ) = 1 )
),
"Y",
"N"
)
The second part of the if is just to account for January and December
Please mark the question solved when done and consider giving kudos if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers