If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > PC based Database Applications > Microsoft Excel > How to show if the figures have gone up or down

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-09-08, 10:25
akhlaq768 akhlaq768 is offline
Registered User
 
Join Date: Oct 2007
Posts: 127
How to show if the figures have gone up or down

Im wondering if you guys can help.

I need to indicate if the figures for this week has gone up or down compared to last weeks figures.

So looking at the attached, I need to add a column (I5) to sheet Admitted Patients WE 20081005, so it compares the % treated in <18 wks figure by specialty to previous weeks figures on sheet Admitted Patients WE 20080921.

Ideally I would love an arrow either point up if the figures has increased or down if they have reduced.

I’m open to suggestions.


Thanks in advance
Attached Files
File Type: zip AR_20081009_WeeklyPTL_WE20081005(WorkInProgress).zip (37.2 KB, 29 views)
Reply With Quote
  #2 (permalink)  
Old 10-13-08, 09:33
akhlaq768 akhlaq768 is offline
Registered User
 
Join Date: Oct 2007
Posts: 127
any help guys
Reply With Quote
  #3 (permalink)  
Old 10-14-08, 08:00
karthic_85 karthic_85 is offline
Registered User
 
Join Date: Dec 2007
Posts: 37
Hope this helps u

put a macro with this
Note : for sample i have compared B & c columns in same sheet


Sub tst()

For Each opic In Me.Pictures
opic.Delete
Next

For i = 6 To 28
Cells(i, 8).Activate
If Cells(i, 2) > Cells(i, 3) Then
ActiveSheet.Pictures.Insert ("C:\up.bmp")
Else

ActiveSheet.Pictures.Insert ("C:\down.bmp")
End If

Next

End Sub
__________________
Meyyappan
Reply With Quote
  #4 (permalink)  
Old 10-14-08, 11:14
akhlaq768 akhlaq768 is offline
Registered User
 
Join Date: Oct 2007
Posts: 127
SOLVED - thanks for all your help again :-)
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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