Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Junior Member
 
Posts: 13
Smile Can I move the cursor on error??

I have my project inventory sheet working other than a divide by 0 error #DIV/0! when they don't enter a value in the quantity field.

Is it possible to move the cursor to the quantity field and display a message with this error?

Or, is it time to start learning VB?

This is the code that calculates the sales margin and gives the error

=IF((G4+H4)0,(I4-F4)/I4,0)

The quantity cell is D4

Thanks for your help,

Les
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,344
Default Can I move the cursor on error??

Hi,

As stated your problem would require VBA. And if you want this to happen on
mouse over (when your mouse is over the cell only) that is more of an issue.
However, without vba you could modify the formula

=IF((G4+H4)0,(I4-F4)/I4,"my error message")


--
Thanks,
Shane Devenshire


"Les Linton" wrote:


I have my project inventory sheet working other than a divide by 0 error
#DIV/0! when they don't enter a value in the quantity field.

Is it possible to move the cursor to the quantity field and display a
message with this error?

Or, is it time to start learning VB?

This is the code that calculates the sales margin and gives the error

=IF((G4+H4)0,(I4-F4)/I4,0)

The quantity cell is D4

Thanks for your help,

Les




--
Les Linton

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Can I move the cursor on error??

How does D4 come into play? Or is it a dependent of I4?

Looks to me like the error would arise when I4 is empty or 0

Try this to give a message if I4 is empty.

=IF(I4="","There is no entry in I4",IF((G4+H4)0,(I4-F4)/I4,0))


Gord Dibben MS Excel MVP

On Wed, 26 Sep 2007 19:07:28 +0100, Les Linton
wrote:


I have my project inventory sheet working other than a divide by 0 error
#DIV/0! when they don't enter a value in the quantity field.

Is it possible to move the cursor to the quantity field and display a
message with this error?

Or, is it time to start learning VB?

This is the code that calculates the sales margin and gives the error

=IF((G4+H4)0,(I4-F4)/I4,0)

The quantity cell is D4

Thanks for your help,

Les


  #4   Report Post  
Junior Member
 
Posts: 13
Default

Thanks to both. Gord, you are correct the error does come because the result of the calculation at I4 is 0. This occurs due to no entry in D4.

Thanks again,

Les

Quote:
Originally Posted by Gord Dibben View Post
How does D4 come into play? Or is it a dependent of I4?

Looks to me like the error would arise when I4 is empty or 0

Try this to give a message if I4 is empty.

=IF(I4="","There is no entry in I4",IF((G4+H4)0,(I4-F4)/I4,0))


Gord Dibben MS Excel MVP

On Wed, 26 Sep 2007 19:07:28 +0100, Les Linton
wrote:


I have my project inventory sheet working other than a divide by 0 error
#DIV/0! when they don't enter a value in the quantity field.

Is it possible to move the cursor to the quantity field and display a
message with this error?

Or, is it time to start learning VB?

This is the code that calculates the sales margin and gives the error

=IF((G4+H4)0,(I4-F4)/I4,0)

The quantity cell is D4

Thanks for your help,

Les
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
move cursor on one sheet moves cursor on all sheets tdworden Excel Discussion (Misc queries) 2 July 22nd 07 10:50 PM
How do I get tab to move the cursor one cell over rather than 8? Mysti4God Excel Worksheet Functions 2 August 11th 06 07:04 PM
Several questions about move cursor Hank Excel Discussion (Misc queries) 1 August 4th 06 10:44 PM
Move cursor to next row Hank Excel Discussion (Misc queries) 1 August 4th 06 09:56 PM
Move Cursor to A1 Silver Excel Discussion (Misc queries) 3 January 7th 05 02:49 PM


All times are GMT +1. The time now is 12:40 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"