+ Reply to Thread
Results 1 to 20 of 20

Total novice fishing weight percentage calculator

  1. #1
    Registered User
    Join Date
    12-27-2012
    Location
    yorkshire
    MS-Off Ver
    Excel 2003
    Posts
    10

    Smile Total novice fishing weight percentage calculator

    Hey guys first off hey all im new here...

    a little background, me and some friends are running a fishing competition this year where we try to catch all the uk native freshwater species and are awarded points based on the percentage weight against the record fish of that species.

    weights are measures in lbs oz and dram (2lb 4oz 1dram)

    so for example I catch a fish at 1lb 1oz 1dram and the record for that species is 2lb 2oz 2dram how would I calculate the percentage weight of the caught fish against the record in a spreadsheet/database
    in this case its easy obviously 50%

    16oz = 1lb
    16dr = 1oz

    btw im a complete novice at this so please be patient with me

    I have a list of all native records if anyone can help me out id be greatly appreciative.

  2. #2
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,063

    Re: Total novice fishing weight percentage calculator

    LoL. So much easier with SI Units (grams...). Put Lb, oz, dram in separate columns and in a 4th column calculate the weight in drams & then calculate as a percentage of the record weight.

  3. #3
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,063

    Re: Total novice fishing weight percentage calculator

    Dohh. Itchy trigger finger - the phone rang. Is this what you want?

    BTW, the sheet with the list of record weights MUST be in alphabetical order. So when you add a newone at the bottom, don't forget to resort
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    12-27-2012
    Location
    yorkshire
    MS-Off Ver
    Excel 2003
    Posts
    10

    Re: Total novice fishing weight percentage calculator

    Cheers grant much appreciated I will let you know as soon as possible having problems installing with windows 8

  5. #5
    Registered User
    Join Date
    12-27-2012
    Location
    yorkshire
    MS-Off Ver
    Excel 2003
    Posts
    10

    Re: Total novice fishing weight percentage calculator

    Cheers grant that was awsome give me a good platform to work with

    And try to add some features thanks alot

    Garry

  6. #6
    Registered User
    Join Date
    12-27-2012
    Location
    yorkshire
    MS-Off Ver
    Excel 2003
    Posts
    10

    Re: Total novice fishing weight percentage calculator

    ok so now im trying to add a points system for example if the percentage comes out at 0-10% that's would mirror 1pt in the next column 11-20% 2pts and so on then at the bottom of that colum a total

    ive also added a page for each member would it be possible to compile the totals into a league table?

    also how do I upload attachments

    cheers garry

  7. #7
    Forum Expert Kevin UK's Avatar
    Join Date
    12-07-2010
    Location
    Radstock, Somerset
    MS-Off Ver
    365
    Posts
    1,922

    Re: Total novice fishing weight percentage calculator

    Hi garryrobson85

    Go Advanced and attach file.

    Upload file.PNG
    Regards Kevin


    Merged Cells (They are the work of the devil!!!)

  8. #8
    Registered User
    Join Date
    12-27-2012
    Location
    yorkshire
    MS-Off Ver
    Excel 2003
    Posts
    10

    Re: Total novice fishing weight percentage calculator

    hers the document with the fish weights and users added

    Cheers Kevin
    Attached Files Attached Files

  9. #9
    Forum Expert Kevin UK's Avatar
    Join Date
    12-07-2010
    Location
    Radstock, Somerset
    MS-Off Ver
    365
    Posts
    1,922

    Re: Total novice fishing weight percentage calculator

    Hi garryrobson85

    Have a look at the attached, is this what you are after. Cell H4 has the VLOOKUP function in and the lookup table in cells J1:K10!
    Attached Files Attached Files

  10. #10
    Registered User
    Join Date
    12-27-2012
    Location
    yorkshire
    MS-Off Ver
    Excel 2003
    Posts
    10

    Re: Total novice fishing weight percentage calculator

    seems about what im after but when I duplicated the code to replicate it always reads 10 points

    after reviwing it works fine in your original but the percentages no longer show as percentages after the first fish ?
    Attached Files Attached Files
    Last edited by garryrobson85; 12-29-2012 at 04:37 PM.

  11. #11
    Registered User
    Join Date
    12-27-2012
    Location
    yorkshire
    MS-Off Ver
    Excel 2003
    Posts
    10

    Re: Total novice fishing weight percentage calculator

    Ok so managed to get it how I wanted it heres the updated one

    is it possible to total the points column and then transfer the usename of page and total points for user into a league table sorting higest points first. this would be on a separate page.

    Cheers Garry
    Attached Files Attached Files

  12. #12
    Forum Contributor
    Join Date
    09-22-2012
    Location
    Berkeley, CA
    MS-Off Ver
    Excel 2010
    Posts
    112

    Re: Total novice fishing weight percentage calculator

    Each competitor's fishing table can be accessed from any sheet. You can create a new sheet and then sum up the points for each competitor. Then apply a sort to it to list from highest to lowest.

    One other thing I did notice about your file is that it awards one point even if no fish was caught. Is that intended? To change it, an else condition could be used to set it to zero if desired.
    Attached Files Attached Files
    ------------------------
    W2

  13. #13
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,063

    Re: Total novice fishing weight percentage calculator

    I've tarted Stuart Frew up a bit (in a manner of speaking...) to tidy up the error messages...
    Attached Files Attached Files

  14. #14
    Registered User
    Join Date
    12-27-2012
    Location
    yorkshire
    MS-Off Ver
    Excel 2003
    Posts
    10

    Re: Total novice fishing weight percentage calculator

    Cheers grant thats perfect struggling to understand the new formulas but thay doesnt matter aslong as it works
    Cheers garry

  15. #15
    Forum Contributor
    Join Date
    09-22-2012
    Location
    Berkeley, CA
    MS-Off Ver
    Excel 2010
    Posts
    112

    Re: Total novice fishing weight percentage calculator

    The way the sums works is by looking at the points column of the table and adding them all up using the sytax "=Sum(TableName[ColumnName]). So for your case, you have something like "=Sum(MyCatchGR[Points]) where "MyCatchGR" is the table for the fishing data for Gary Robson and "[Points]" is used to select just the points column instead of the whole table. Hope that shines some light on how it works.

  16. #16
    Registered User
    Join Date
    12-27-2012
    Location
    yorkshire
    MS-Off Ver
    Excel 2003
    Posts
    10

    Re: Total novice fishing weight percentage calculator

    cheers cofad think I understand most of it now.

    the calc is working great but its easy for people to mess it up if the deleate the drams percentage or points column is there any way I can blank these out so there not editable?

  17. #17
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,063

    Re: Total novice fishing weight percentage calculator

    Exactly which bits will you allow others to edit?

  18. #18
    Registered User
    Join Date
    12-27-2012
    Location
    yorkshire
    MS-Off Ver
    Excel 2003
    Posts
    10

    Re: Total novice fishing weight percentage calculator

    lbs oz dram is all my users need to edit to make the rest funcation
    Attached Files Attached Files
    Last edited by garryrobson85; 12-31-2012 at 10:22 AM.

  19. #19
    Forum Contributor
    Join Date
    09-22-2012
    Location
    Berkeley, CA
    MS-Off Ver
    Excel 2010
    Posts
    112

    Re: Total novice fishing weight percentage calculator

    Sure, so here is the process to lock the cells.

    1.Select the cells you want to be able to edit, i.e. the weight input cells.

    2.Right click the selected cells and select format. Go to the protection tab on the popup menu and uncheck the locked box.

    3.Right click the tab of the bottom of the workbook for the sheet and click "protect sheet" and then select "ok" on the popup menu.

    That's how it works in excel 2010 and 2007; however, I believe it should be the same or a similar process for excel 2003.

    I can't get your file to download this morning for whatever reason. Otherwise, I'd demonstrate for you how it works. Good luck with it!

  20. #20
    Registered User
    Join Date
    04-21-2013
    Location
    plymouth
    MS-Off Ver
    Excel 2010
    Posts
    2

    Re: Total novice fishing weight percentage calculator

    has any one got a sea fishing weight percentage calculator

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1