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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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
Super User
Super User

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
Super User
Super User

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

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.

Top Solution Authors