Results 1 to 10 of 11

Thread: Adding value of two cells to get result in 3rd cell

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #9
    Member
    Join Date
    May 2020
    Posts
    66
    Rep Power
    6
    Code:
    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Range("C8").Value = Range("B3").Value + Range("E3").Value
    End Sub
    This works fine.

    Thank you for the support and guidance!
    Last edited by DocAElstein; 08-28-2020 at 03:24 PM. Reason: Code Tags added - use # icon in editor window to get them

Similar Threads

  1. Replies: 3
    Last Post: 02-11-2014, 08:31 PM
  2. Replies: 2
    Last Post: 07-23-2013, 06:54 PM
  3. Adding specfic number to a available number in previous cell.
    By Rajesh Kr Joshi in forum Excel Help
    Replies: 2
    Last Post: 03-02-2013, 01:55 AM
  4. Replies: 2
    Last Post: 01-24-2013, 09:03 PM
  5. Trim Text after 3rd Underscore but retain format
    By trankim in forum Excel Help
    Replies: 4
    Last Post: 05-13-2012, 10:44 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •