LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #8   Report Post  
Posted to microsoft.public.excel.misc
Bob Bob is offline
external usenet poster
 
Posts: 972
Default Reset figure in a cell to 1

Sorry Jacob it still not working.
Is there a way using formular?
--
Bob


"Jacob Skaria" wrote:

Bob

Is Tools|Macro|Security set to low.?

If this post helps click Yes
---------------
Jacob Skaria


"Bob" wrote:

Gary and Jacob,
I tried both but nothing happens. Any ideas
I followed the instructions to the letter.
--
Bob


"Jacob Skaria" wrote:

Bob, you will require a macro to do this. If you are new to macros set the
Security level to low/medium in (Tools|Macro|Security). Right click the sheet
tab and view code. Paste the below code and try out

The value in A2 will be reset to 1; everytime when the value in A1 changes.
Try and feedback

Dim varTemp As Variant
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
If Not Application.Intersect(Target, Range("A1")) Is Nothing Then
If varTemp < Target.Value Then
Range("A2") = 1: varTemp = Target
End If
End If
Application.EnableEvents = True
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Bob" wrote:

Thanks Jacob,
The figure in "A1" can be any value, and in "A2" it's value = 1 to 10.
I'm after if the value in "A1" changes at all (to any value), I need the
value in "A2" to change back to the value of "1". In other words resetting
itself to "1".
I hope that makes sense!!
--
Bob


"Jacob Skaria" wrote:

Bob,

This can be done if the value in A2 is returned from a formula like below..

IF(A1=somevalue,if true return a value, if false return a value)
Formula in A2 =IF(A1=57315,8,1)

I am sure you are not looking at any particular number. If you can explain a
bit more about your requirement someone here should be able to help you...

If this post helps click Yes
---------------
Jacob Skaria


"Bob" wrote:

Is there a way to reset a figure in a cell back to "1" when I change a figure
in another cell.
i.e.
Cell "A1" = 57315
Cell "A2" = 8
When I change "A1" to 57316, then cell "A2" changes automaticly to 1.
--
Bob

 
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
I want to increase the value in cell A1 from 0 to 10 then reset Bobo Excel Worksheet Functions 1 April 10th 09 02:31 AM
reset last cell in Excel The Pedagogue Excel Worksheet Functions 1 March 29th 07 09:58 AM
Set cell to record date when adjacent cell is filled AND NOT RESET The new guy Excel Worksheet Functions 3 February 26th 07 06:11 PM
Way to reset the last cell to be EOF Mary Barnich-Tampa Excel Discussion (Misc queries) 2 June 19th 06 06:02 PM
how do you reset your arrow keys to move cell to cell? Marchelle New Users to Excel 1 May 13th 05 10:37 PM


All times are GMT +1. The time now is 08:14 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"