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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
AllanBerces
Post Prodigy
Post Prodigy

Project Progress Status

Hi Experts,

Good day

Can anyone pls need assistance on how can i change the Project Completed column status in new column. 

If the Project Completed is 100 = Completed 
if the Project Completed is  greaterthan 0 but lessthan 100 = In-Progress
if the Project Completed is blank or 0 = Not started

AllanBerces_0-1717846851858.png

Thank you

1 ACCEPTED SOLUTION
foodd
Community Champion
Community Champion

You can create a custom column using the SWITCH function as follows:

 

 

Status Custom Column = SWITCH(
    TRUE(),
    [Project Completed] = 100, "Completed",
    [Project Completed] > 0 && [Project Completed] < 100, "In-Progress",
    ISBLANK([Project Completed]) || [Project Completed] = 0, "Not started"
)

 

 

foodd_0-1717849500968.png
=-=-=-=-=-

If you find this insightful, please provide a Kudo and accept this as a solution so that other members may find it easier.

View solution in original post

3 REPLIES 3
foodd
Community Champion
Community Champion

You can create a custom column using the SWITCH function as follows:

 

 

Status Custom Column = SWITCH(
    TRUE(),
    [Project Completed] = 100, "Completed",
    [Project Completed] > 0 && [Project Completed] < 100, "In-Progress",
    ISBLANK([Project Completed]) || [Project Completed] = 0, "Not started"
)

 

 

foodd_0-1717849500968.png
=-=-=-=-=-

If you find this insightful, please provide a Kudo and accept this as a solution so that other members may find it easier.

Hi @foodd Thank you very much, working perfectly

Your welcome. 

 

If the solution provided is of interest, consider adding Kudos.

Helpful resources

Announcements
Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.