Consulting

Results 1 to 3 of 3

Thread: Is it possible at all?

  1. #1
    VBAX Newbie
    Joined
    May 2016
    Posts
    1
    Location

    Is it possible at all?

    Hi there.
    I am coming to you with some issues.

    I receive feed of some data that it is refreshed every 1-3s. Feed can be placed in excel cell using some special formula, and it is refreshed automaticly by the software.

    Issue 1) Is it possible to save this feed as a number in separate different cell, that it will be not changed anymore with next refreshment of the feed?

    Issue 2) Is it possible to make action from issue 1) every (x) seconds in another row, automaticly?

    If yes, how to do it?

    Thank you in advance for your help.

    EDIT: please check image:

    Last edited by bakunet; 05-26-2016 at 10:20 AM.

  2. #2

  3. #3
    Moderator VBAX Sage SamT's Avatar
    Joined
    Oct 2006
    Location
    Near Columbia
    Posts
    7,814
    Location
    What is multiposting?



    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If Target Is Range("B2") Then Range("C1").End(xlDown).Offset(1) = Target
    End Sub
    I expect the student to do their homework and find all the errrors I leeve in.


    Please take the time to read the Forum FAQ

Posting Permissions

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