- Joined
- 2 June 2011
- Posts
- 5,341
- Reactions
- 242
I was planning to offer payment if it looked like something you could automate for me.
Nah, this forum is built on sharing knowledge. I'm happy to help where I can.
I was planning to offer payment if it looked like something you could automate for me.
Yes B is added, and is calculated from the raw live data. Probably doesn't need to be there as a column in itself. To calculate it, I used that nested IF function [edited].
Private Sub Worksheet_Change(ByVal Target As Range)
Application.ScreenUpdating = False
Dim xRange As Range
Dim cl As Range
' Set the range in Sheet1 to be searched. In this instance the range is each cell in column A with data in it
With Worksheets("sheet1")
Set xRange = .Range("a2", .Range("a2").End(xlDown))
End With
' Once the range is defined, for each cell in column A an IF statement is used to determine
' if the text string is "BUY" (nb this is case sensitive)
' If a "BUY" is found, then the entire row is copied into the first free row in "Sheet2"
For Each cl In xRange
If cl.Offset(0, 1).Value = "BUY" Then cl.EntireRow.Copy Destination:=Sheets("Sheet2").Range("a3000").End(xlUp).Offset(1, 0)
Next cl
Application.ScreenUpdating = True
End Sub
formula in column M: =if((left(rc5,8)="Transfer",value(right,rc5,6)),0)Apologies if this has been asked before.
I'm trying to speed up the process of my tax return from my trading account but my broker is lazy and aggregates trades then does a currency conversion on the aggregate. I need to know the AU amount of each row ie do a currency conversion for each row. But I have the conversion number in the E column and want to just copy this number to column M say, as per pic below.
This is basically what I want to 'code' -
IF column E starts with Transfer THEN copy the last 6 digits of column E to column M
Thanks in advance
View attachment 46347
In Excel I normally apply Filters to my table headings and those drop down lists allow me to easily rank the data.
Now if I have a table with streaming data coming in - is there a way to auto-sort a table?
E.g. My table has % change for ASX 200 stocks being streamed in, and I want the top movers to always appear on the top without me having to actually click the little filter arrow and select "Sort smallest to largest".
Thanks
How would I get this bar chart to show negative values a different colour to positive one?
View attachment 48632
Cool cept is there a way to specify the colour?Right click on the chart columns. Under Format Data Series > Fill > Invert colour if negative.
Good few weeks there for you TH
Just another few Prawn......
Cool cept is there a way to specify the colour?
Hello excel gurus. if I have a data series plotted on a bar graph such as this,
='P & L'!$B$83:$B$120,'P & L'!$D$83:$D$120
Is there a way to exclude one cell, being D103?
Hello and welcome to Aussie Stock Forums!
To gain full access you must register. Registration is free and takes only a few seconds to complete.
Already a member? Log in here.