IF formula sring

poormisabel

New Member
Joined
Oct 10, 2018
Messages
3
Hi all

I'm trying to do multiple IFs and having problems.

The below if in place at the moment, and basically pulls the £'000 value from another location for set parameters -

=IF(F$8=1,EntGLActual($C$1,F$3,F$2,F$7,$A12),0)/1000

The output here is set to 1 decimal place, and zeroes showing as "-"

But if this value is originally, say £40, this will return a value of 0 in the cell rather than "-" because there is a value there, but it rounds to nil.

How can I enter another if string to that formula which is based on the output from the above? So basically, anything which is >0.1 for the above formula, show as the formula's output, but anything below that show as zero rather than the rounded down to nil which shows now.

Thanks very much.
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
00.05
44
0.110.11
22
00.09
55
66
formula in A1
=IF(G1>=0.1,G1,0)

<colgroup><col width="64" span="11" style="width:48pt"> </colgroup><tbody>
</tbody>
 
Upvote 0
Thanks, but I was wondering if it was possible to combine it into the original formaula above.

So it will pull through the value from the original source and divide by 1000, but if the result is less than 0.1 it should return 0 (rather than 0.04 which would display as 0.0 and thus won't be displayed as "-" when formatting is applied).
 
Upvote 0
your col A is text, not a number

say A2 is A 0.00 this is clearly text you need to convert the "0.00" to 0:00
 
Upvote 0
Sorry if I'm being dense, but that doesn't seem to answer my problem. I know that formula on its own will show anything under 0.1 as 0 but I don't know how to combine it with my original formula because it's the output of that formaul I want to apply to new IF function to.
 
Upvote 0
Cross posted https://www.excelforum.com/excel-formulas-and-functions/1248983-if-formula-string.html

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0
=IF(F$8=1,EntGLActual($C$1,F$3,F$2,F$7,$A12),0) you cannot divide an either / or by 1000 you have to divide each by a thousand or just one of them
 
Upvote 0

Forum statistics

Threads
1,216,200
Messages
6,129,468
Members
449,511
Latest member
OttosArmy

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