Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi Powerbi Rangers
I need some of ur help .
I have this table
Plan Stuffing | Result |
30-Oct-23 | Other Month |
17-Nov-23 | 3 Month |
18-Nov-23 | 3 Month |
22-Nov-23 | 3 Month |
07-Des-23 | 3 Month |
08-Des-23 | 3 Month |
09-Des-23 | 3 Month |
07-Jan-24 | 3 Month |
08-Jan-24 | 3 Month |
09-Jan-24 | 3 Month |
i want to create a column similiar with result column, if date within Plan Stuffing is current month and 2 month before this current month then give remark "3 Month", else "Other Month"
Thanks
Syaiful
Solved! Go to Solution.
Try this calculated column:
Result =
VAR vPlanStuffing = Table1[Plan Stuffing]
VAR vComparisonDate =
EOMONTH ( TODAY (), -3 )
VAR vResult =
IF ( vPlanStuffing > vComparisonDate, "3 Month", "Other Month" )
RETURN
vResult
Proud to be a Super User!
Thanks bro
Try this calculated column:
Result =
VAR vPlanStuffing = Table1[Plan Stuffing]
VAR vComparisonDate =
EOMONTH ( TODAY (), -3 )
VAR vResult =
IF ( vPlanStuffing > vComparisonDate, "3 Month", "Other Month" )
RETURN
vResult
Proud to be a Super User!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.