Hiding results

G

Guest

I have created a spreadsheet that I fill out daily. Some of the formulae take
information from the row above i.e. in cell E15 the formula is =E14-J14+P14.
This creates the same answer all the way down the column until I enter the
next days stats. Is there any way of hiding the results in the rows beneath
the one you are working on ?
 
D

Dave Peterson

=if(count(e14,j14,p14)<>3,"",e14-j14+p14)

Will make the cell look empty until you have 3 numbers in E14, J14, and P14.
 
G

Guest

This likely will meet with criticism, but this worked for me.
Paste this into the Sheet module your working in.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Range("E:E").Font.ColorIndex = xlAutomatic
Range(Target.Offset(1), Target.Offset.End(xlDown)).Font.ColorIndex = 2
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top