Excel Help - Sort Data
15 minutes ago, manikyath said:you're not gonna do this with formula's.
Just did. Sort of.
Changed the values to be unique so it's easier to see what it's doing:
For this to work, you do need the DataPoint # to be working though. And you will need to manually drag the header # column out for as many datapoints as you have (if you grab a few cells then drag to fill, excel will notice you're counting up one by one and continue it for you). Does also use an INDEX formula which can get pretty performance heavy depending on how big your data set is IIRC, I've only lightly mucked about with them. Then you use this formula and it works:
=INDEX($B$2:$B$10,MATCH(CONCAT($D$2," ",E2),$B$2:$B$10,0)+1,0) if you want to paste it in, you add +2 instead of +1 after the MATCH function for the 2nd row (MQ3). This will break the instant the format changes or again, if the Datapoint # isn't working.
Best solution is what @Kilrahsaid, make it spit out a CSV.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now