I need help in my project
Closed
Smarty9902
Posts
1
Registration date
Saturday July 6, 2013
Status
Member
Last seen
July 6, 2013
-
Jul 6, 2013 at 10:08 PM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Jul 16, 2013 at 11:10 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Jul 16, 2013 at 11:10 AM
Related:
- I need help in my project
- Microsoft project 2021 free download - Download - Business management
- Project igi download for pc - Download - Shooters
- Project playtime download pc - Download - Horror
- Project 64 - Download - Console emulators
- Gantt project free download - Download - Organisation and teamwork
1 response
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Jul 16, 2013 at 11:10 AM
Jul 16, 2013 at 11:10 AM
Hi Smarty,
If you right-click your sheets tab and paste the following code in the big white field, The number entered in B2 will automatically be added to D2 and the value in B2 will be reset to 0:
Best regards,
Trowa
If you right-click your sheets tab and paste the following code in the big white field, The number entered in B2 will automatically be added to D2 and the value in B2 will be reset to 0:
Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, Range("B2")) Is Nothing Then Exit Sub Range("D2").Value = Range("D2").Value + Range("B2").Value Range("B2").Value = 0 End Sub
Best regards,
Trowa