Project Status Spreadsheet

Stevef777

New Member
Joined
Oct 6, 2021
Messages
6
Office Version
  1. 365
Platform
  1. Windows
Hello All,
I am creating a project spreadsheet to track components through the design, ERP scheduling, and manufacturing phases. I have so far been successful in comparing live dates to the shcedule dates and determining the "days" status of the delta between planned and actual for each part which is either a positive or negative number.
I was wondering if it is possible to conditional format the worksheet to enter text "on track" in say column "C" based on a numerical the value from say column "B" (which is either less than or greater than 0)?
Any help greatly appreciated.
Steve
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Hello! It would be easier if you provided a piece of data (not real) to understand what's what. As it is, as it should be. Then the answer will be faster.
 
Upvote 0
You could use something like
Excel Formula:
=IF(B2>0,"On Track","")
in col C.
 
Upvote 0
You could use something like
Excel Formula:
=IF(B2>0,"On Track","")
in col C.
Hello Fluff, thank you that works well. How do I combine the two "IF" formula together?
=IF(B2<0,"On Track",""),IF(B2>0,"Delayed","")
 
Upvote 0
How about
Excel Formula:
=IF(B2<0,"On Track",IF(B2>0,"Delayed",""))
 
Upvote 0

Forum statistics

Threads
1,223,627
Messages
6,173,425
Members
452,515
Latest member
Alicedonald9

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top