Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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
Thank you
Solved! Go to Solution.
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"
)
=-=-=-=-=-
If you find this insightful, please provide a Kudo and accept this as a solution so that other members may find it easier.
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"
)
=-=-=-=-=-
If you find this insightful, please provide a Kudo and accept this as a solution so that other members may find it easier.
Your welcome.
If the solution provided is of interest, consider adding Kudos.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 55 | |
| 33 | |
| 33 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 68 | |
| 67 | |
| 45 | |
| 29 | |
| 25 |