Formula to Track Budget

I am trying to create a table the analyzes a number column to determine if we finished over budget, under budget, or on budget, however, I want it to only calculate that when Project Status is “Done”.

  1. When Remaining Edit Hours is >0 we are under budget, when Remaining Edit Hours is =0 we are on budget and when it is <0 we are over budget.

Additionally, is there a way to fill the column with something else besides the red (!) when a project is not marked as done?

1 Like

You could use a formula column and some IF statements.

If({Project Status} = "Done",
    If({Remaining Edit Hours} > 0, "Under Budget",
        If({Remaining Edit Hours} < 0, "Over Budget", "On Budget")
    ),
   "In Progress"
)
3 Likes

That worked perfectly, thank you!