Posted: 5/9/2016 12:18:08 AM EDT
|
Hey,
I need help creating an excel formula, I've been at it for a bit now and can't figure it out. What I'm trying to do is create a formula that will give me the range of numbers that is =/- 10% of a target number i.e. cell D2 is 22 and I want E2 to display 19.8-24.2. Is this even possible? Thanks guys, Bobby |
|
Stealing from the above: =CONCATENATE(TEXT((D22*0.9),"0.0")&" - "&(TEXT((+D22*1.1),"0,0"))) =CONCATENATE(TEXT((D22*0.9),"00.0")&" - "&(TEXT((+D22*1.1),"00.0"))) ETA: Formats the results correctly. |