Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 06-17-2018, 03:35 AM
parbynat parbynat is offline Streaming data to cells Windows 10 Streaming data to cells Office 2016
Novice
Streaming data to cells
 
Join Date: Jun 2018
Posts: 5
parbynat is on a distinguished road
Default Streaming data to cells

Hi
My knowledge of Excel is extremely poor, I'm not even sure if what I want to do is easy or not so easy to do.
The data I receive randomly changes many times in a cell I have designated for it.
What I would like to do is receive the first number then move down one cell to receive the next number rather than it just replace the first number.
I hope that makes sense.


Parbynat
Reply With Quote
  #2  
Old 06-17-2018, 09:36 AM
Logit Logit is offline Streaming data to cells Windows 10 Streaming data to cells Office 2007
Expert
 
Join Date: Jan 2017
Posts: 533
Logit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the rough
Default

.
Do you have existing VBA code related to the "receiving" of the data ?

Where is this data coming from ?
Reply With Quote
  #3  
Old 06-17-2018, 11:05 AM
parbynat parbynat is offline Streaming data to cells Windows 10 Streaming data to cells Office 2016
Novice
Streaming data to cells
 
Join Date: Jun 2018
Posts: 5
parbynat is on a distinguished road
Default

Its from a trading website.
It gives you the option to connect to excel where you can create your own stuff.
The feed I am interested in is the last traded price, the designated cell for this is M12.
When I click the cell the code contained there reads, ='trading website'!M12
If I put this code into a cell onto a blank sheet it replicates the same price as on sheet1.
Once the LTP changes from the website it changes the value in M12, I wanted to move value1 down one cell and display value2 above it instead of replacing it.
I was hoping to compile a long row of these changes if its possible
Reply With Quote
  #4  
Old 06-17-2018, 11:25 AM
Logit Logit is offline Streaming data to cells Windows 10 Streaming data to cells Office 2007
Expert
 
Join Date: Jan 2017
Posts: 533
Logit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the rough
Default

.
Please provide the code you are using to receive the incoming financial data.
Do not include any private information.
Reply With Quote
  #5  
Old 06-17-2018, 11:32 AM
parbynat parbynat is offline Streaming data to cells Windows 10 Streaming data to cells Office 2016
Novice
Streaming data to cells
 
Join Date: Jun 2018
Posts: 5
parbynat is on a distinguished road
Default

Where would I find this code?
Reply With Quote
  #6  
Old 06-17-2018, 12:07 PM
Logit Logit is offline Streaming data to cells Windows 10 Streaming data to cells Office 2007
Expert
 
Join Date: Jan 2017
Posts: 533
Logit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the rough
Default

Lets try a different method.

Reply back to me, as you have been doing, but before you send the message attached the workbook by clicking on the button below marked GO ADVANCED (which opens another view) then look below and click on MANAGE ATTACHMENTS.

That will open a small window where you can select your workbook and upload it. Then finally send the message and the workbook.

Again, do not include an confidential information in your workbook.

This is a much shorter process than trying to explain how to locate the code and what to copy/paste, etc. etc.
Reply With Quote
  #7  
Old 06-17-2018, 12:30 PM
parbynat parbynat is offline Streaming data to cells Windows 10 Streaming data to cells Office 2016
Novice
Streaming data to cells
 
Join Date: Jun 2018
Posts: 5
parbynat is on a distinguished road
Default

Many thanks for your help.
What I want to do is just a snippet of what I'm trying to do long term.
I think my best bet would be to spend some time learning excel rather than asking for help all the time
Reply With Quote
  #8  
Old 06-17-2018, 12:39 PM
Logit Logit is offline Streaming data to cells Windows 10 Streaming data to cells Office 2007
Expert
 
Join Date: Jan 2017
Posts: 533
Logit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the rough
Default

.
Thats ok.

If you determine how to use this code, it will check for a cell to determine if it is NOT EMPTY. If it is not empty, the code inserts a blank row where the cell was located and moves all other rows down one row.

So, you can change the code from A1 to M12 and hopefully it will work for your needs.

Best wishes !

Code:
Option Explicit

Sub IsEmptyExample1()
Application.ScreenUpdating = False
If IsEmpty(Range("A1")) = False Then
     Rows("1:1").Select
     Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
Else
   Exit Sub
End If
Range("A1").Select
Application.ScreenUpdating = True
End Sub
Reply With Quote
  #9  
Old 06-17-2018, 12:40 PM
Logit Logit is offline Streaming data to cells Windows 10 Streaming data to cells Office 2007
Expert
 
Join Date: Jan 2017
Posts: 533
Logit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the rough
Default

.
Please mark this thread as solved so others will know.
Reply With Quote
  #10  
Old 06-17-2018, 01:34 PM
parbynat parbynat is offline Streaming data to cells Windows 10 Streaming data to cells Office 2016
Novice
Streaming data to cells
 
Join Date: Jun 2018
Posts: 5
parbynat is on a distinguished road
Default

Hey thanks
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Streaming data to cells Manipulating Data in Cells Stockturn Word Tables 1 09-11-2017 04:45 AM
Clear data from unlocked cells wpryan Excel Programming 5 02-25-2016 10:51 PM
How to populate cells in Sheet2 with Data Source query using cell data from Sheet1 bobznkazoo Excel 2 03-27-2014 11:14 AM
data in some cells moving Sherriann Excel 1 08-07-2013 06:52 AM
WMP Streaming frith Word 2 02-25-2013 01:17 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 12:05 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft