=IF(Sheet1!Q27>0,"",Sheet1!Q27)
What is the Result you want???
I think you want something like this,,,
Code:=IF(Sheet1!Q27>0,"",Sheet1!Q27)
Sorry, the result I would like to display is the data that is contained within that cell.... i.e. 0.1
=IF(Sheet1!Q27>0,Q27,"")
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.