Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Store variable value for Chart

The value of a cell changes randomly during the day as a
result of a web query i.e. at 10:00 AM the value is 2.3 at
10:15 AM the value is 2.54 etc. How can I store the
individual values so that I can create a chart that
depicts these changes graphically.
Many thanks

Al
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Store variable value for Chart

You need to have a variable to store the target row number and incremen
it with each cycle of the macro (don't forget to initialise it at th
beginning of the macro with rw=0 or whatever).

Something like :-
'--------------------------------------------------------------------
rw = rw + 1
Worksheets("DataStore").Cells(rw, 1).Value = MyTime
Worksheets("DataStore").Cells(rw, 2).Value = MyValue
'----------------------------------------------------------------------

--
Message posted from http://www.ExcelForum.com

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
need variable time axis available in XY chart for area chart Byron Charts and Charting in Excel 0 February 6th 10 03:58 PM
need variable time axis available in XY chart for area chart Byron Charts and Charting in Excel 0 February 6th 10 03:17 PM
store inventory sheet(ex:sports equipment store) vardan Excel Worksheet Functions 1 October 11th 06 12:51 AM
How can I store individual chart settings lschuh Charts and Charting in Excel 0 October 11th 05 05:10 PM
Chart with both X & Y variable Khawar Charts and Charting in Excel 2 October 11th 05 12:18 PM


All times are GMT +1. The time now is 03:56 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"