Multiple conditions to throw up a comment

arnoldmiranda1603

New Member
Joined
Jul 21, 2016
Messages
5
ODEFTETempTotalODE ChangeSRVarianceComments
804040800All in Sync
80384078-2Negative HC, please state reason
78384078-20Negative ODE change, please state reason
8038407820All in Sync
804240822Positive HC, please state reason
8242408220Positive ODE change, please state reason

<tbody>
</tbody>

Hi,
I am trying to wrestle with a nested condition which should appear in the comments column based on the values in the columns.

Columns ODE (ODE has a formula: Value+ODE Change) and TOTAL are pre-inputted and I'm expecting team members to month on month update this file. They will enter numbers in column FTE and Temp, this adds up in the Total column.

If there is a variance it will automatically highlight in the variance column (Total - ODE + SR)

Based on the existing variance the team member can either choose to add a number in the SR column or make a change in the ODE Change column in positive or negative. Based on the outcome I wanted the different prompts to appear in the Comments section.

Reason for looking for a formula is due to the eventual data set which could go into 1000's

Appreciate any help.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
How about

Book1
ABCDEFGH
1ODEFTETempTotalODE ChangeSRVarianceComments
2804040800All in sync
380384078-2Negative HC, please state reason
478384078-20Negative ODE change, please state reason
58038407820All in sync
6804240822Positive HC, please state reason
78242408220Positive ODE change, please state reason
Calendar
Cell Formulas
RangeFormula
H2=IF(E2="",CHOOSE(SIGN(G2)+2,"Negative HC, please state reason","All in sync","Positive HC, please state reason"),CHOOSE(SIGN(E2)+2,"Negative ODE change, please state reason",,"Positive ODE change, please state reason"))
 
Upvote 0
Try this

<table border="1" cellspacing="0" style="font-family:Calibri,Arial; font-size:11pt; background-color:#ffffff; "> <colgroup><col style="font-weight:bold; width:30px; " /><col style="width:31.37px;" /><col style="width:26.61px;" /><col style="width:39.92px;" /><col style="width:36.12px;" /><col style="width:115.96px;" /><col style="width:20.91px;" /><col style="width:57.98px;" /><col style="width:483.8px;" /></colgroup><tr style="background-color:#cacaca; text-align:center; font-weight:bold; font-size:8pt; "><td > </td><td >A</td><td >B</td><td >C</td><td >D</td><td >E</td><td >F</td><td >G</td><td >H</td></tr><tr style="height:19px ;" ><td style="font-size:8pt; background-color:#cacaca; text-align:center; " >1</td><td >ODE</td><td >FTE</td><td >Temp</td><td >Total</td><td >ODE Change</td><td >SR</td><td >Variance</td><td >Comments</td></tr><tr style="height:19px ;" ><td style="font-size:8pt; background-color:#cacaca; text-align:center; " >2</td><td style="text-align:right; ">80</td><td style="text-align:right; ">40</td><td style="text-align:right; ">40</td><td style="text-align:right; ">80</td><td > </td><td > </td><td style="text-align:right; ">0</td><td >All in sync</td></tr><tr style="height:19px ;" ><td style="font-size:8pt; background-color:#cacaca; text-align:center; " >3</td><td style="text-align:right; ">80</td><td style="text-align:right; ">38</td><td style="text-align:right; ">40</td><td style="text-align:right; ">78</td><td > </td><td > </td><td style="text-align:right; ">-2</td><td >Negative HC, please state reason</td></tr><tr style="height:19px ;" ><td style="font-size:8pt; background-color:#cacaca; text-align:center; " >4</td><td style="text-align:right; ">78</td><td style="text-align:right; ">38</td><td style="text-align:right; ">40</td><td style="text-align:right; ">78</td><td style="text-align:right; ">-2</td><td > </td><td style="text-align:right; ">0</td><td >Negative ODE change, please state reason</td></tr><tr style="height:19px ;" ><td style="font-size:8pt; background-color:#cacaca; text-align:center; " >5</td><td style="text-align:right; ">80</td><td style="text-align:right; ">38</td><td style="text-align:right; ">40</td><td style="text-align:right; ">78</td><td > </td><td style="text-align:right; ">2</td><td style="text-align:right; ">0</td><td >All in sync</td></tr><tr style="height:19px ;" ><td style="font-size:8pt; background-color:#cacaca; text-align:center; " >6</td><td style="text-align:right; ">80</td><td style="text-align:right; ">42</td><td style="text-align:right; ">40</td><td style="text-align:right; ">82</td><td > </td><td > </td><td style="text-align:right; ">2</td><td >Positive HC, please state reason</td></tr><tr style="height:19px ;" ><td style="font-size:8pt; background-color:#cacaca; text-align:center; " >7</td><td style="text-align:right; ">82</td><td style="text-align:right; ">42</td><td style="text-align:right; ">40</td><td style="text-align:right; ">82</td><td style="text-align:right; ">2</td><td > </td><td style="text-align:right; ">0</td><td >Positive ODE, please state reason</td></tr></table><br /><table style="font-family:Arial; font-size:10pt; border-style: groove ;border-color:#00ff00;background-color:#fffcf9; color:#000000; "><tr><td ><b></b></td></tr><tr><td ><table border = "1" cellspacing="0" cellpadding="2" style="font-family:Arial; font-size:9pt;"><tr style="background-color:#cacaca; font-size:10pt;"><td >Cell</td><td >Formula</td></tr><tr><td >H2</td><td >=IF(AND(E2="",G2=0), "All in sync",IF(G2<0,"Negative HC",IF(E2<0,"Negative ODE change",IF(G2>0,"Positive HC",IF(E2>0,"Positive ODE"))))  & ", please state reason")</td></tr></table></td></tr></table>
 
Upvote 0
Not sure why it's not working for you. If you want to try & find out, I'm happy to help, but if you're happy to go with Dante's formula that's fine.
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,399
Members
448,958
Latest member
Hat4Life

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