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! Request now
I have 3 columns - Project number, Status and Month.
| Project | Status | Month |
| 11 | PR | Jan-18 |
| 11 | PR | Feb-18 |
| 11 | FE | Mar-18 |
| 11 | FE | Apr-18 |
| 11 | FE | May-18 |
| 11 | CD | Jan-18 |
| 22 | CD | Feb-18 |
| 22 | PR | Mar-18 |
| 22 | PR | Apr-18 |
| 22 | PR | May-18 |
| 33 | FE | Jan-18 |
| 33 | FE | Feb-18 |
| 33 | FE | Mar-18 |
| 33 | PR | Apr-18 |
| 33 | PR | May-18 |
I am trying to find way how to get information about change of status - for example when projects left FE status to PR.
tried to use Previousmonth but cannot find a way how to use it with text.
thank you for any help
Hi @Anonymous,
Maybe you can change the type of the [Month] into Date or add a new date column.
DateMonth = DATE(YEAR([Month]), MONTH([Month]), 1)
Then create a date table due to the time intelligence function needs it.
Finally, you can add a new column to get the status of changes.
Column =
VAR lastStatus =
CALCULATE (
MIN ( Table1[Status] ),
PREVIOUSMONTH ( 'Calendar'[Date] ),
ALLEXCEPT ( Table1, Table1[Project] )
)
RETURN
IF ( ISBLANK ( lastStatus ) || [Status] = lastStatus, "No change", "Changed" )
Best Regards,
Dale
What are you trying to show exactly? The first date of a certain project?
Did I answer your question correctly? Mark my answer as a solution!
Proud to be a Datanaut!
im trying to get information :
e.g. project XX changed status from FE to PR on Dec 2018, XY from CD to CB on Nov 2018
was trying to get value for each row for previous month
what about showing it on a Timeline visual?
Did I answer your question correctly? Mark my answer as a solution!
Proud to be a Datanaut!
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.