Jump to content

Excel People


wykikitoon
 Share

Recommended Posts

  • 4 weeks later...

Right G-Dogg & F-Mann.

I am trying to figure out the best way to do this one.  We have a race league that is held weekly throughout the summer months.  You get a set number of points per participation.  Not everyone competes every week due to other commitments etc.  I want the easiest way of working out total points with the least amount of manual imputing as possible.

Link to comment
Share on other sites

15 minutes ago, Gemmill said:

You need to provide more details. Framework of a spreadsheet or whatever. This is too broad a request as it is, you PENIS.

 

We have a weekly event and basically I need to total up the points :lol: 

 

At the moment I have;

 

 

TT.png

 

So we give 10 points per ride.  So in this instance Rider A would have a total of 30 points.

Edited by wykikitoon
Link to comment
Share on other sites

1 minute ago, wykikitoon said:

 

We have a weekly event and basically I need to total up the points :lol: 

 

At the moment I have;

 

 

TT.png

 

So we give 10 points per ride.  So in this instance Rider A would have a total of 30 points.

 

Just do a COUNTIF multiplied by 10.

 

So have a separate table with just rider names and then a COUNTIF for each of them.

Link to comment
Share on other sites

7 minutes ago, Gemmill said:

 

Just do a COUNTIF multiplied by 10.

 

So have a separate table with just rider names and then a COUNTIF for each of them.

<gif> You're the man </gif> 

Link to comment
Share on other sites

5 minutes ago, wykikitoon said:

<gif> You're the man </gif> 

 

BTW to arrive at your list of rider names, don't do that manually. Use the following:

 

=UNIQUE()

 

And the range in the brackets should be the name column from your previous screenshot. That way you don't have to keep adding new people to your score table.

 

You can wrap your UNIQUE() in a SORT() as well if you want it sorted alphabetically.

  • Like 1
Link to comment
Share on other sites

  • 7 months later...

Fuck it @Gemmill it's better with pictures so I'll stick it here.

 

I need to return purely those fixes that have failed status and no success status. 

 

image.thumb.png.ec463bf0e98cacc9adcc693fb852e141.png

 

Pivot table returns this;

image.png.b4e8ebe5367533117102b7595f31df95.png

 

so I want to return only the lwfra1oraavp01 and those like it. 

 

The column to the right of the pivot contains the following; =IF(AND(NOT(ISBLANK(K5)),(ISBLANK(L5))),J5,"Success"), which is fine, but I want to return an array with solely the jobs that are not success. I'd prefer to pull from the raw data rather than the pivot. 

 

Link to comment
Share on other sites

Yeah Dave, we're using power query here fo sho. It'll spit out a table with only the rows you want to see, no formulas required. 

 

Where does the initial data come from? Does that get spat out of some system as a csv? Do you have one continuous file for this or do you get a new one each day? 

Link to comment
Share on other sites

16 minutes ago, The Fish said:

Fuck it @Gemmill it's better with pictures so I'll stick it here.

 

I need to return purely those fixes that have failed status and no success status. 

 

image.thumb.png.ec463bf0e98cacc9adcc693fb852e141.png

 

Pivot table returns this;

image.png.b4e8ebe5367533117102b7595f31df95.png

 

so I want to return only the lwfra1oraavp01 and those like it. 

 

The column to the right of the pivot contains the following; =IF(AND(NOT(ISBLANK(K5)),(ISBLANK(L5))),J5,"Success"), which is fine, but I want to return an array with solely the jobs that are not success. I'd prefer to pull from the raw data rather than the pivot. 

 

Have you tried a UNIQUE(FILTER())  formula?

Link to comment
Share on other sites

3 minutes ago, Dazzler said:

Have you tried a UNIQUE(FILTER())  formula?

Just as a very basic example. Raw data:

image.png.049beb837401966f2dc059088b0f99c7.png

 

Unique/Filter formula returns:

 

image.png.4aeebf90cbe90b075565d6f6b9653e85.png

 

This is based on a formula of =UNIQUE(FILTER('Raw Data'!$A:$A,'Raw Data'!$B:$B="Fail"))

Link to comment
Share on other sites

9 minutes ago, Dazzler said:

Just as a very basic example. Raw data:

image.png.049beb837401966f2dc059088b0f99c7.png

 

Unique/Filter formula returns:

 

image.png.4aeebf90cbe90b075565d6f6b9653e85.png

 

This is based on a formula of =UNIQUE(FILTER('Raw Data'!$A:$A,'Raw Data'!$B:$B="Fail"))

 

Yeah, that just returns the unique job that have a failure, unfortunately. Jobs can fail and succeed on the same day, which is causing the issue. I need jobs that fail, and only fail. 

Link to comment
Share on other sites

16 minutes ago, Gemmill said:

Dave. Stay focused. 

 

Where does the initial data come from? Are you copying it in from somewhere? Do you get an output from some system? 

 

Delivered as an excel, by 3rd party, hosted on a sharepoint. They lift raw data from their server.

Link to comment
Share on other sites

1 hour ago, Gemmill said:

Yeah Dave, we're using power query here fo sho. It'll spit out a table with only the rows you want to see, no formulas required. 

 

Where does the initial data come from? Does that get spat out of some system as a csv? Do you have one continuous file for this or do you get a new one each day? 

 

New one every month

Link to comment
Share on other sites

OK so if your company has enterprise licences, you can link direct to the share point and you just press refresh in your spreadsheet and it spits out your new table.

 

Failing that, we just shift the excel somewhere else. 

 

Is the above first screenshot an exact version of what the spreadsheet looks like? This one:

 

image.png.743296fd7e377907eb4ea358623b6d11.png

 

And how many times does it do the test? Are your possible combos basically

 

Pass first time, no second test

Fail first time, pass second test

Fail first time, fail second time 

 

And you want all of the ones that fall into category 3, and don't care about the others? 

Link to comment
Share on other sites

Also, does the original data have the same column headings? That bit's important. And did you say some columns contain a timestamp which you don't care about? 

 

I'll PM you. 

Link to comment
Share on other sites

15 minutes ago, Gemmill said:

OK so if your company has enterprise licences, you can link direct to the share point and you just press refresh in your spreadsheet and it spits out your new table.

 

Failing that, we just shift the excel somewhere else. 

 

Is the above first screenshot an exact version of what the spreadsheet looks like? This one:

 

image.png.743296fd7e377907eb4ea358623b6d11.png

 

And how many times does it do the test? Are your possible combos basically

 

Pass first time, no second test

Fail first time, pass second test

Fail first time, fail second time 

 

And you want all of the ones that fall into category 3, and don't care about the others? 

 

Yeah it's a screengrab of the table exactly

 

The fix can be attempted any number of times. So, it could fail once, then work on the second, or fail 6 times and succeed on the 7th. 

 

I want only the fixes that fail and are at no point successful.

Link to comment
Share on other sites

43 minutes ago, Gemmill said:

Right I'll get back to you in a bit. At the vet with the cat atm. 

Is that code for having a shit?

Link to comment
Share on other sites

21 hours ago, The Fish said:

Is that code for having a shit?

 

You're getting confused with 'dropping the kids off at the pool'.

 

I think what Gemmill said translates to 'taken my side piece to the doctors'. :dunno:

  • Like 1
Link to comment
Share on other sites

49 minutes ago, MrBass said:

 

You're getting confused with 'dropping the kids off at the pool'.

 

I think what Gemmill said translates to 'taken my side piece to the abortion clinic'. :dunno:

FYP

Link to comment
Share on other sites

41 minutes ago, Dazzler said:

FYP

 

You think Gemmill is forking out for a fancy abortion clinic? When he has a wardrobe full of these?

 

Bloody Wire Coat Hanger Reminder Of Unsafe Abortion Stock Photo | Adobe  Stock

Link to comment
Share on other sites

12 minutes ago, ewerk said:

 

You think Gemmill is forking out for a fancy abortion clinic? When he has a wardrobe full of these?

 

Bloody Wire Coat Hanger Reminder Of Unsafe Abortion Stock Photo | Adobe  Stock

No need. 
He has a nutsack full of these. 
IMG_20221120_102417-scaled.jpg

  • Haha 3
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.