• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Extract changes in value from list in excel

Brandt

New Member
Good day all

I made a list of 110000 rows but, only every 220 or so the value in row A changes. I want to be able to extract those rows. Is there a formula or method to do this. Please see uploaded file for example.
 

Attachments

  • DataCost_Changes_Test.xlsx
    32.7 KB · Views: 9
Thank you for your reply. I would like to extract the rows when it changes from ex. 0.00 to 0.01 to 0.02 etc. it goes up to 4.76 and I need a list of every event when it changes.
 
Brandt
'one possible' ...
1)
for Cell D2 =ISODD(INT(LEFT(A2,5)/0,005))
for Cell E2 =IF(AND(D1=FALSE,D2=TRUE),TRUE,"")
copy both formulas down
2)
Do Filter from columns A:E to find E-columns TRUEsScreen Shot 2018-09-11 at 14.04.52.png
and You'll get those '0.01'-steps
 
Brandt
... if You would like to try other method,
(eg no need to copy 110000 rows formulas)
then press [ Do It ].
 

Attachments

  • DataCost_Changes_Test.xlsb
    28.8 KB · Views: 3
Back
Top