ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Need to store changing values from one cell (https://www.excelbanter.com/excel-discussion-misc-queries/110241-need-store-changing-values-one-cell.html)

Emmie

Need to store changing values from one cell
 
Hi,

I've been reading the posts and couldn't find what I needed.
I have a cell that changes value every second (via DDE). I want to record
the value of that cell in a column where each cell in the column represents
the value for each second.

There are two way I want to do this.

The first is where the DDE value is stored in the column every second. When
the last cell is written, the next write will be back to the top cell and
everything get written over.

The next way is to have the column shift the data down one position every
second.

The problem is, I don't want to do this with VB. I know, I know. It's
unfortunate that because of the actions of some people, we hesitate to use a
really useful feature.

If no one can give answers to this. I'll post it in the "suggestions" for
.... the next Excel upgrade?
--
Emmie Villa

Biff

Need to store changing values from one cell
 
The problem is, I don't want to do this with VB.

It's impossible to do without VBA (or some other language like C or C++)

Biff

"Emmie" wrote in message
...
Hi,

I've been reading the posts and couldn't find what I needed.
I have a cell that changes value every second (via DDE). I want to record
the value of that cell in a column where each cell in the column
represents
the value for each second.

There are two way I want to do this.

The first is where the DDE value is stored in the column every second.
When
the last cell is written, the next write will be back to the top cell and
everything get written over.

The next way is to have the column shift the data down one position every
second.

The problem is, I don't want to do this with VB. I know, I know. It's
unfortunate that because of the actions of some people, we hesitate to use
a
really useful feature.

If no one can give answers to this. I'll post it in the "suggestions" for
... the next Excel upgrade?
--
Emmie Villa




JLatham

Need to store changing values from one cell
 
Even change via DDE should fire the sheet's _Change() event, right? And that
would make VBA coding pretty minimal, and very effective.

"Biff" wrote:

The problem is, I don't want to do this with VB.


It's impossible to do without VBA (or some other language like C or C++)

Biff

"Emmie" wrote in message
...
Hi,

I've been reading the posts and couldn't find what I needed.
I have a cell that changes value every second (via DDE). I want to record
the value of that cell in a column where each cell in the column
represents
the value for each second.

There are two way I want to do this.

The first is where the DDE value is stored in the column every second.
When
the last cell is written, the next write will be back to the top cell and
everything get written over.

The next way is to have the column shift the data down one position every
second.

The problem is, I don't want to do this with VB. I know, I know. It's
unfortunate that because of the actions of some people, we hesitate to use
a
really useful feature.

If no one can give answers to this. I'll post it in the "suggestions" for
... the next Excel upgrade?
--
Emmie Villa





Emmie

Need to store changing values from one cell
 
Thank guys. I was hoping that someone knew a way to do this without VBA.
Seems like a useful feature to have.
--
Emmie Villa


"JLatham" wrote:

Even change via DDE should fire the sheet's _Change() event, right? And that
would make VBA coding pretty minimal, and very effective.

"Biff" wrote:

The problem is, I don't want to do this with VB.


It's impossible to do without VBA (or some other language like C or C++)

Biff

"Emmie" wrote in message
...
Hi,

I've been reading the posts and couldn't find what I needed.
I have a cell that changes value every second (via DDE). I want to record
the value of that cell in a column where each cell in the column
represents
the value for each second.

There are two way I want to do this.

The first is where the DDE value is stored in the column every second.
When
the last cell is written, the next write will be back to the top cell and
everything get written over.

The next way is to have the column shift the data down one position every
second.

The problem is, I don't want to do this with VB. I know, I know. It's
unfortunate that because of the actions of some people, we hesitate to use
a
really useful feature.

If no one can give answers to this. I'll post it in the "suggestions" for
... the next Excel upgrade?
--
Emmie Villa





paul

Need to store changing values from one cell
 
are the values returned from your dde unique?
what sort of values are they?
--
paul

remove nospam for email addy!



"Emmie" wrote:

Thank guys. I was hoping that someone knew a way to do this without VBA.
Seems like a useful feature to have.
--
Emmie Villa


"JLatham" wrote:

Even change via DDE should fire the sheet's _Change() event, right? And that
would make VBA coding pretty minimal, and very effective.

"Biff" wrote:

The problem is, I don't want to do this with VB.

It's impossible to do without VBA (or some other language like C or C++)

Biff

"Emmie" wrote in message
...
Hi,

I've been reading the posts and couldn't find what I needed.
I have a cell that changes value every second (via DDE). I want to record
the value of that cell in a column where each cell in the column
represents
the value for each second.

There are two way I want to do this.

The first is where the DDE value is stored in the column every second.
When
the last cell is written, the next write will be back to the top cell and
everything get written over.

The next way is to have the column shift the data down one position every
second.

The problem is, I don't want to do this with VB. I know, I know. It's
unfortunate that because of the actions of some people, we hesitate to use
a
really useful feature.

If no one can give answers to this. I'll post it in the "suggestions" for
... the next Excel upgrade?
--
Emmie Villa




Tom Ogilvy

Need to store changing values from one cell
 
I am not sure it is impossible without code depending on what you are
willing to accept as a solution.

Stephen Bullen has a sample file that you may find useful

http://www.oaltd.co.uk/Excel/Default.htm

Look at the Chrono.zip description

It is the first item under the Worksheet Functions heading


--
Regards,
Tom Ogilvy


"Emmie" wrote in message
...
Thank guys. I was hoping that someone knew a way to do this without VBA.
Seems like a useful feature to have.
--
Emmie Villa


"JLatham" wrote:

Even change via DDE should fire the sheet's _Change() event, right? And
that
would make VBA coding pretty minimal, and very effective.

"Biff" wrote:

The problem is, I don't want to do this with VB.

It's impossible to do without VBA (or some other language like C or
C++)

Biff

"Emmie" wrote in message
...
Hi,

I've been reading the posts and couldn't find what I needed.
I have a cell that changes value every second (via DDE). I want to
record
the value of that cell in a column where each cell in the column
represents
the value for each second.

There are two way I want to do this.

The first is where the DDE value is stored in the column every
second.
When
the last cell is written, the next write will be back to the top cell
and
everything get written over.

The next way is to have the column shift the data down one position
every
second.

The problem is, I don't want to do this with VB. I know, I know. It's
unfortunate that because of the actions of some people, we hesitate
to use
a
really useful feature.

If no one can give answers to this. I'll post it in the "suggestions"
for
... the next Excel upgrade?
--
Emmie Villa







All times are GMT +1. The time now is 02:21 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com