Value Odd in cell Vba Code....

Hjemmet

Board Regular
Joined
Jun 20, 2018
Messages
203
Hey i need some help with this code


Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)    On Error Resume Next
    If Not Intersect(Target, Range("F10:R19")) Is Nothing Then
      Target.Value = Target.Value + 1
                  Target.Value = Target.Value / 2
      Cancel = True
    End If
End Sub

I need a Function in this code to see if Target Cell is "Odd" or "Even"
and if cell Is "0" If "0" then Not add 1 to that Cell.....

if "Odd" then add 1 to value and if "Even" then no value Add to cell
 
Last edited:

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
How about
Code:
   If Target.Value Mod 2 = 1 Then Target.Value = Target.Value + 1
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0
A little question more...

if i have a Empty cell ("F16") then Value from ("F15") is Divide with "2" and value after divide is Put into Cell("F16") is that Possibel
i have look and search around Google but didn Find any solution about it

the same function should work in Colomn "F" to "R" on Row "16" divide value From Row "15"
 
Last edited:
Upvote 0
As this is a completely different question, please start a new thread.
 
Upvote 0

Forum statistics

Threads
1,214,952
Messages
6,122,454
Members
449,083
Latest member
Ava19

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