Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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