Good day all,
I was directed here from ExcelIsFun from youtube, I have a problem which is the last problem im having at work. If you can help I would be extremely grateful!
Here it is:
Input rows look like this: 1,2,3,E,E,6,7
Current the output table looks like this: 0,0,0,1,1,0,0
(I'm using a lookup-function to count the 'E' values)
However the output rows should look like this: 0,0,0,3,3,0,0
In essence I want the "E" values to be replaced with the previous Columns Value.
Having read up from this forum I found this quote from the following thread
But i'm not sure how the code works so can't make use of it but i suspect it may be along the right lines.
I eagerly await a solution, and am grateful for all the help this forum has provided so far!
Many Thanks
Joe
I was directed here from ExcelIsFun from youtube, I have a problem which is the last problem im having at work. If you can help I would be extremely grateful!
Here it is:
Input rows look like this: 1,2,3,E,E,6,7
Current the output table looks like this: 0,0,0,1,1,0,0
(I'm using a lookup-function to count the 'E' values)
However the output rows should look like this: 0,0,0,3,3,0,0
In essence I want the "E" values to be replaced with the previous Columns Value.
Having read up from this forum I found this quote from the following thread
Try
Code:Columns("A").Find(What:="Game", SearchDirection:=xlPrevious, SearchOrder:=xlByRows, LookIn:=xlValues, lookat:=xlPart).Select
But i'm not sure how the code works so can't make use of it but i suspect it may be along the right lines.
I eagerly await a solution, and am grateful for all the help this forum has provided so far!
Many Thanks
Joe