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