IF Statement help

karobonas

New Member
Joined
Aug 12, 2011
Messages
6
Hi,
I want to compose an IF Statement that will do the following:
IF sheet 1 Q27 is greater than 0.00 then display result.
I have tried this:
=IF(Sheet1!Q27>0,"")
but the result returns nothing.
any help is much appreciated.
KB
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Sorry, the result I would like to display is the data that is contained within that cell.... i.e. 0.1

Is the IF statement on Sheet1?

I think you have your arguments backwards:

Code:
=IF(Sheet1!Q27>0,Q27,"")

That says: if Sheet1 cell Q27 is greater than 0, display that value in Sheet 1 cell Q27, otherwise display blank.
 
Upvote 0
Is the IF statement on Sheet1?

I think you have your arguments backwards:

Code:
=IF(Sheet1!Q27>0,Q27,"")

That says: if Sheet1 cell Q27 is greater than 0, display that value in Sheet 1 cell Q27, otherwise display blank.

No the IF Statement is on Sheet 2, the data is in sheet 1... sorry for the confusion.
 
Upvote 0
No the IF Statement is on Sheet 2, the data is in sheet 1... sorry for the confusion.

I would still try my formula, the formula that you have in your first post says:

If Sheet1!Q27 is greater than 0, return a blank (""), with no argument for "value_if_false"
 
Upvote 0

Forum statistics

Threads
1,224,587
Messages
6,179,733
Members
452,939
Latest member
WCrawford

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