Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
AndrewKalungi
New Member

Open, Closed, Overdue tracking

Could some one assist with a way I can track Open, Closed and Overdue actions items. In my data, I have an intial date, due date and closed date but I want to highlight items that are Open, Closed and Overdue action items. 

2 ACCEPTED SOLUTIONS
pankajnamekar25
Super User
Super User

Hello @AndrewKalungi 

 

You can create a calculated column

Action Status =

SWITCH(

    TRUE(),

    ISBLANK('YourTable'[Closed Date]) && TODAY() > 'YourTable'[Due Date], "Overdue",

    ISBLANK('YourTable'[Closed Date]), "Open",

    NOT(ISBLANK('YourTable'[Closed Date])), "Closed"

)

 

Thanks,
 Pankaj Namekar | LinkedIn

If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.

View solution in original post

v-karpurapud
Community Support
Community Support

Hello @AndrewKalungi 

Welcome to the Microsoft Fabric Forum. Also thank you @pankajnamekar25 for your contribution .
 

Regarding the tracking of  Open, Closed and Overdue actions items. Create a calculated Column using the below DAX:
 

While I may not have full visibility into the specific structure of your dataset, I have created a sample .pbix file to demonstrate one possible approach to implementing the desired logic.

Status =

VAR TodayDate = TODAY()

RETURN

    SWITCH(

        TRUE(),

        NOT(ISBLANK('Table'[Closed Date])), "Closed",

        ISBLANK('Table'[Closed Date]) && 'Table'[Due Date] < TodayDate, "Overdue",

        ISBLANK('Table'[Closed Date]) && 'Table'[Due Date] >= TodayDate, "Open"

    )


 

 I’ve included relevant screenshot and attached the .pbix file for your reference. Please take a moment to review them and see if this solution aligns with your requirements.

vkarpurapud_0-1747199895759.png


If this doesn’t fully meet your needs, could you kindly share a sample of your data and more detailed context? That would help us provide a more accurate solution.

 

If this response resolves your query, kindly mark it as Accepted Solution to help other community members. A Kudos is also appreciated if you found the response helpful.

 

 

Thank You!

 

View solution in original post

5 REPLIES 5
v-karpurapud
Community Support
Community Support

Hi @AndrewKalungi 

I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please Accept it as a solution and give it a 'Kudos' so others can find it easily.

Thank you.

v-karpurapud
Community Support
Community Support

Hi @AndrewKalungi 

I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.

Thank you.

v-karpurapud
Community Support
Community Support

Hi @AndrewKalungi 

May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.

Thank you.

v-karpurapud
Community Support
Community Support

Hello @AndrewKalungi 

Welcome to the Microsoft Fabric Forum. Also thank you @pankajnamekar25 for your contribution .
 

Regarding the tracking of  Open, Closed and Overdue actions items. Create a calculated Column using the below DAX:
 

While I may not have full visibility into the specific structure of your dataset, I have created a sample .pbix file to demonstrate one possible approach to implementing the desired logic.

Status =

VAR TodayDate = TODAY()

RETURN

    SWITCH(

        TRUE(),

        NOT(ISBLANK('Table'[Closed Date])), "Closed",

        ISBLANK('Table'[Closed Date]) && 'Table'[Due Date] < TodayDate, "Overdue",

        ISBLANK('Table'[Closed Date]) && 'Table'[Due Date] >= TodayDate, "Open"

    )


 

 I’ve included relevant screenshot and attached the .pbix file for your reference. Please take a moment to review them and see if this solution aligns with your requirements.

vkarpurapud_0-1747199895759.png


If this doesn’t fully meet your needs, could you kindly share a sample of your data and more detailed context? That would help us provide a more accurate solution.

 

If this response resolves your query, kindly mark it as Accepted Solution to help other community members. A Kudos is also appreciated if you found the response helpful.

 

 

Thank You!

 

pankajnamekar25
Super User
Super User

Hello @AndrewKalungi 

 

You can create a calculated column

Action Status =

SWITCH(

    TRUE(),

    ISBLANK('YourTable'[Closed Date]) && TODAY() > 'YourTable'[Due Date], "Overdue",

    ISBLANK('YourTable'[Closed Date]), "Open",

    NOT(ISBLANK('YourTable'[Closed Date])), "Closed"

)

 

Thanks,
 Pankaj Namekar | LinkedIn

If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.