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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 101 | |
| 76 | |
| 56 | |
| 51 | |
| 46 |