Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Copy of realtime data.

Hi,
I have created a table with real time and percentage data get refreshed
every minute. I need to get the data in column D for that particular minute.

Var.Time Var.Perc. Fix Time Perc. At par. Time
10:30 PM 33.45% 10:30 PM 33.45%
10:31 PM
10:32 PM
10:33 PM
10:34 PM
10:35 PM

I have created a formula i.e. =IF($A$2=C2:C$7,$B$2," "), But the problem
arises when the time changes to 10:31 pm, it shows the percentage at
particular time to 32.66 %, but cell D2 turns blank, which is supposed to be
33.45%.

Var. Time Var. Perc. Fix Time Perc. At particular Time
10:31 PM 32.66% 10:30 PM
10:31 PM 32.66%
10:32 PM
10:33 PM
10:34 PM
10:35 PM
Please help me in fixing the correct formula.

Thanks in advance.



--
sidd
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 248
Default Copy of realtime data.

Use
=INDEX(B2:B7,MATCH(A2,C2:C7,0))
to get the value from Col B where A2 matches in Col C
--
Pl click the ''''Yes'''' button
(if you see it - don''''t worry if you don''''t),
if this answer was helpful.



"sidd" wrote:

Hi,
I have created a table with real time and percentage data get refreshed
every minute. I need to get the data in column D for that particular minute.

Var.Time Var.Perc. Fix Time Perc. At par. Time
10:30 PM 33.45% 10:30 PM 33.45%
10:31 PM
10:32 PM
10:33 PM
10:34 PM
10:35 PM

I have created a formula i.e. =IF($A$2=C2:C$7,$B$2," "), But the problem
arises when the time changes to 10:31 pm, it shows the percentage at
particular time to 32.66 %, but cell D2 turns blank, which is supposed to be
33.45%.

Var. Time Var. Perc. Fix Time Perc. At particular Time
10:31 PM 32.66% 10:30 PM
10:31 PM 32.66%
10:32 PM
10:33 PM
10:34 PM
10:35 PM
Please help me in fixing the correct formula.

Thanks in advance.



--
sidd

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Copy of realtime data.

No, This formula doesn't work. It works for the first cell D2, but as soon as
the time
changes, D2 becomes 0.00%.

Cell A2 and B2 are variable cells, value changes every minute. So I need to
keep the data of present and previous minute in column D.

Thanks.
--
sidd


"Sheeloo" wrote:

Use
=INDEX(B2:B7,MATCH(A2,C2:C7,0))
to get the value from Col B where A2 matches in Col C
--
Pl click the ''''Yes'''' button
(if you see it - don''''t worry if you don''''t),
if this answer was helpful.



"sidd" wrote:

Hi,
I have created a table with real time and percentage data get refreshed
every minute. I need to get the data in column D for that particular minute.

Var.Time Var.Perc. Fix Time Perc. At par. Time
10:30 PM 33.45% 10:30 PM 33.45%
10:31 PM
10:32 PM
10:33 PM
10:34 PM
10:35 PM

I have created a formula i.e. =IF($A$2=C2:C$7,$B$2," "), But the problem
arises when the time changes to 10:31 pm, it shows the percentage at
particular time to 32.66 %, but cell D2 turns blank, which is supposed to be
33.45%.

Var. Time Var. Perc. Fix Time Perc. At particular Time
10:31 PM 32.66% 10:30 PM
10:31 PM 32.66%
10:32 PM
10:33 PM
10:34 PM
10:35 PM
Please help me in fixing the correct formula.

Thanks in advance.



--
sidd

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 248
Default Copy of realtime data.

Help me understand the requirements...
So you get time and percentage in C1 and D1, which gets updated everytime...

You want that to transfer to Col A and B?

You can not keep the previous value through a formula... you will have to
use a macro... which should transfer the value just before refreshing the
data every minute

--
Pl click the ''''Yes'''' button
(if you see it - don''''t worry if you don''''t),
if this answer was helpful.



"sidd" wrote:

No, This formula doesn't work. It works for the first cell D2, but as soon as
the time
changes, D2 becomes 0.00%.

Cell A2 and B2 are variable cells, value changes every minute. So I need to
keep the data of present and previous minute in column D.

Thanks.
--
sidd


"Sheeloo" wrote:

Use
=INDEX(B2:B7,MATCH(A2,C2:C7,0))
to get the value from Col B where A2 matches in Col C
--
Pl click the ''''Yes'''' button
(if you see it - don''''t worry if you don''''t),
if this answer was helpful.



"sidd" wrote:

Hi,
I have created a table with real time and percentage data get refreshed
every minute. I need to get the data in column D for that particular minute.

Var.Time Var.Perc. Fix Time Perc. At par. Time
10:30 PM 33.45% 10:30 PM 33.45%
10:31 PM
10:32 PM
10:33 PM
10:34 PM
10:35 PM

I have created a formula i.e. =IF($A$2=C2:C$7,$B$2," "), But the problem
arises when the time changes to 10:31 pm, it shows the percentage at
particular time to 32.66 %, but cell D2 turns blank, which is supposed to be
33.45%.

Var. Time Var. Perc. Fix Time Perc. At particular Time
10:31 PM 32.66% 10:30 PM
10:31 PM 32.66%
10:32 PM
10:33 PM
10:34 PM
10:35 PM
Please help me in fixing the correct formula.

Thanks in advance.



--
sidd

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Copy of realtime data.

The time and percentage gets updated in A2 and B2 every minute.

I made up a column C with the fix time, so that I can get updated time cell
A2 to choose corresponding row in column C and put the updated value of
percentage B2 in column D for that particular time.

Thanks.
--
sidd


"Sheeloo" wrote:

Help me understand the requirements...
So you get time and percentage in C1 and D1, which gets updated everytime...

You want that to transfer to Col A and B?

You can not keep the previous value through a formula... you will have to
use a macro... which should transfer the value just before refreshing the
data every minute

--
Pl click the ''''Yes'''' button
(if you see it - don''''t worry if you don''''t),
if this answer was helpful.



"sidd" wrote:

No, This formula doesn't work. It works for the first cell D2, but as soon as
the time
changes, D2 becomes 0.00%.

Cell A2 and B2 are variable cells, value changes every minute. So I need to
keep the data of present and previous minute in column D.

Thanks.
--
sidd


"Sheeloo" wrote:

Use
=INDEX(B2:B7,MATCH(A2,C2:C7,0))
to get the value from Col B where A2 matches in Col C
--
Pl click the ''''Yes'''' button
(if you see it - don''''t worry if you don''''t),
if this answer was helpful.



"sidd" wrote:

Hi,
I have created a table with real time and percentage data get refreshed
every minute. I need to get the data in column D for that particular minute.

Var.Time Var.Perc. Fix Time Perc. At par. Time
10:30 PM 33.45% 10:30 PM 33.45%
10:31 PM
10:32 PM
10:33 PM
10:34 PM
10:35 PM

I have created a formula i.e. =IF($A$2=C2:C$7,$B$2," "), But the problem
arises when the time changes to 10:31 pm, it shows the percentage at
particular time to 32.66 %, but cell D2 turns blank, which is supposed to be
33.45%.

Var. Time Var. Perc. Fix Time Perc. At particular Time
10:31 PM 32.66% 10:30 PM
10:31 PM 32.66%
10:32 PM
10:33 PM
10:34 PM
10:35 PM
Please help me in fixing the correct formula.

Thanks in advance.



--
sidd

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
realtime list sorting/data exraction Richard Edwards[_2_] Excel Worksheet Functions 4 March 23rd 09 04:51 PM
realtime Mats Excel Worksheet Functions 7 November 14th 07 10:11 AM
Realtime chart example ntoze Excel Discussion (Misc queries) 2 April 10th 06 05:16 PM
Realtime Automatic sorting of data in rows in new work sheet Gazzali Excel Worksheet Functions 0 June 23rd 05 09:35 AM
extract data from a realtime updated cell ALVESM Excel Discussion (Misc queries) 4 March 21st 05 05:21 PM


All times are GMT +1. The time now is 12:25 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"