Fishwrench.com

Tightening the nut on bass

  • Home
  • Activity
  • Ask Mr. Fishwrench
  • Classifieds
  • Events
    • Event Categories
    • Event Locations
    • My Bookings
  • Forums
  • Groups
  • Members
  • About FW
    • Contact Us
  • Sponsorship
  • FWBass
 

Sponsors, Partners, & Affiliates

A.L.S. Aerocare
All-Terrain Tackle
Ardent Reels
Bluehost.com
Gander Mountain
MG Lures
Outkast Tackle
Quantum Graphics
Wired 2 Fish

FW Ad Network

FW Cloud

accidents android bass fishing battery boat boating boat ramp build your own carolina rigging centipede custom built custom made elevator etiquette finesse fish fishing flw french fries gambling hilly billy ice fishing ice house IM instant messaging jigs kik light saber lure color maintenance manners mike iaconelli mobile mr fishwrench neighbors offensive poker table power tools reattach spinnerbait texas hold 'em trailers winter project wired2fish writing

FW Friends

  • Bass Pundit
  • Bob Kuhn Photography
  • BobStanke.com
  • Huderle Custom Rods
  • Jason Baggett
  • Josh Douglas
  • MG Lures
  • Midwest Rod and Reel
  • Rich Lindgren
  • The Fin
  • Tonka Tackle
  • Wired2Fish

Affiliates

  • Gander Mountain
  • North American Fishing Club

Fishwrench is hosted by…

Group Admins

  • Profile picture of fishwrench
  • Profile picture of chris

Group Mods

  • Profile picture of godfather
Group logo of Data Analysis

Data Analysis

Public Group active 11 months, 1 week ago

Out of place? Maybe… but it’s what we do. Come here to find better ways to crunch your numbers

  • Home
  • Forum
  • Events 0
  • Members 5
  • RSS
  • Profile picture of fishwrench

    fishwrench started the forum topic Using an Excel Array Formula To Median If in the group Group logo of Data AnalysisData Analysis: 11 months, 1 week ago

    Excel array formulas… I nearly forgot about this bad-boys. Good thing I remembered how to use them, or I would be doing a lot of cutting and pasting at this late hour on a Friday. I was tasks with finding the Median for a range of numbers based on specific criteria. I had length-of-employment ranges [...]

  • Profile picture of godfather

    godfather joined the group Group logo of Data AnalysisData Analysis 1 year ago

  • Profile picture of godfather

    godfather joined the group Group logo of Data AnalysisData Analysis 1 year ago

  • Profile picture of fishwrench

    fishwrench started the forum topic SQL: Bulk Insert Unix File Row Terminator in the group Group logo of Data AnalysisData Analysis: 1 year, 1 month ago

    Having trouble figuring out what the row terminator is for what appears to be .csv file but is actually Unix? Use the following:

    ROWTERMINATOR = ’0x0a’

  • Profile picture of bobstanke

    bobstanke posted an update in the group Group logo of Data AnalysisData Analysis: 1 year, 1 month ago

    Does anyone know how to have MS Excel go out and retrieve a current stock price when the spreadsheet is loaded up? I would prefer to have this done in Google Docs, so if you have that solution it would be even better, but Excel will do for now. Thanks!

    • Profile picture of fishwrench
      fishwrench replied 1 year, 1 month ago

      @bobstanke — Excel makes it possible to import just about anything from any web page. If using Excel 2007, click on ‘data’ and then ‘From Web’. It’s the second icon from the left if you’re using the default Excel settings. From there, navigate to the page that has the data you’re looking for in the New Web Query box. Click the yellow…[Read more]

      • Profile picture of fishwrench
        fishwrench replied 1 year, 1 month ago

        I should also mention, to have the data populate every time you open the page, select ”Properties…’ before closing the New Query Wizard box. There, you’ll see a checkbox allowing you to refresh the data on open. Make sure that is checked.

        • Profile picture of bobstanke
          bobstanke replied 1 year, 1 month ago

          AWESOME! Thanks!

  • Profile picture of fishwrench

    fishwrench started the forum topic SQL: First Day of the Month in the group Group logo of Data AnalysisData Analysis: 1 year, 3 months ago

    Looking for a way to find the first day of last month, this month, or next month? The following sql queries make it easy.

    Open the sql Snippet

  • Profile picture of fishwrench

    fishwrench started the forum topic Wordpress: Forum Post 404 Error in the group Group logo of Data AnalysisData Analysis: 1 year, 5 months ago

    So, you’ve installed Wordpress and Buddypress on your site. Things look great, but you get a 404 page not found error every time you make a new post. The problem is in the pluggables.php file found in the wp-includes directory of your Wordpress install. There is some code that newer versions of IIS won’t play [...]

  • Profile picture of fishwrench

    fishwrench started the forum topic SQL: ISNULL() Like Access nz() Function in the group Group logo of Data AnalysisData Analysis: 1 year, 6 months ago

    I developed for years in Access and finally made the leap to SQL. One item that took me quite awhile to figure out was the command to use in place of the Access nz function. Access junies know that nz() will treat a Null value as 0 so MyField can be used for calculations. Yikes! There [...]

  • Profile picture of fishwrench

    fishwrench started the forum topic SQL: Select Random Rows In Query in the group Group logo of Data AnalysisData Analysis: 1 year, 6 months ago

    So, someone has asked you for a list of records from your database, but they want a random pull. In your access days, you would have simply used:

    Code:
    SELECT *, RND(MyMemberID) FROM tblMyTable ORDER BY RND(MyMemberID)

    No such luck in SQL. Doing something similar there would give you the same randomly generated number for each row. [...]

  • Profile picture of fishwrench

    fishwrench started the forum topic SQL: Format Date as MM/DD/YYYY in the group Group logo of Data AnalysisData Analysis: 1 year, 6 months ago

    Much of the data I work with on a daily basis has to be grouped by months that span any number of years. Because I’m crossing multiple years, I can’t simply group by month and call it good. I also need a year designation. At the same time, I want my date field to be formatted [...]

  • Profile picture of fishwrench

    fishwrench started the forum topic ASP.NET: Add a Print Button To aspx Page in the group Group logo of Data AnalysisData Analysis: 1 year, 6 months ago

    An easy way to add a a print button to an asp.net page is to use javascript. The following script will add a default print button that will open the Windows print dialogue box and ultimately print the web page being viewed. <input type=”button” id=”btnPrint” onclick=”window.print ()” value=”Print”> You can also use a custom print button by [...]

  • Profile picture of fishwrench

    fishwrench started the forum topic ASP.NET: Add Edit Item Dropdown List in the group Group logo of Data AnalysisData Analysis: 1 year, 6 months ago

    Wow…I beat my head on my desk for quite awhile trying to figure this one out. I had to add a dropdown list to a gridview when editing / updating. The value of the dropdown had to be passed to an update query. Adding the dropdownlist wasn’t hard — getting the update query to work was [...]

  • Profile picture of fishwrench

    fishwrench started the forum topic Access: Calculating Age In An Access Query in the group Group logo of Data AnalysisData Analysis: 1 year, 6 months ago

    To calculate age in an access query, use the DateDiff function. DateDiff("yyyy",,Date()) “yyyy” tell the function you want to calculate the difference between two dates in years. is your column name containing the date of birth. If your column name is ‘Birthday’, then use here. Date() tells Access to grab today’s date. DateDiff() can be used [...]

  • Profile picture of fishwrench

    fishwrench started the forum topic SQL: Group by Hour in the group Group logo of Data AnalysisData Analysis: 1 year, 6 months ago

    I’ve been making the transition from Access to SQL and finding that some function don’t exist in SQL, or at least not as how they appear in Access. If you’re looking to group by hour in SQL, use the following function:

    GROUP BY datapart(hh,yourcolumnname)

    Happy grouping!

  • Profile picture of chris

    chris posted on the forum topic SQL: Find Beginning of Today in the group Group logo of Data AnalysisData Analysis: 1 year, 6 months ago

    Here’s another way, that has a little more hack flavor. Covert the date to yyyyMMdd format first then back to a date.
    select Convert(datetime,Convert(varchar(12),getDate(),112))

  • Profile picture of chris

    chris joined the group Group logo of Data AnalysisData Analysis 1 year, 6 months ago

  • Profile picture of 2ndbase

    2ndbase started the forum topic SQL: Select Random Rows In SQL Query in the group Group logo of Data AnalysisData Analysis: 1 year, 6 months ago

    So, someone has asked you for a list of records from your database, but they want a random pull. In your access days, you would have simply used: Code: SELECT *, RND(MyMemberID) FROM tblMyTable ORDER BY RND(MyMemberID) No such luck in SQL. Doing something similar there would give you the same randomly generated number for [...]

  • Profile picture of 2ndbase

    2ndbase joined the group Group logo of Data AnalysisData Analysis 1 year, 6 months ago

  • Profile picture of fishwrench

    fishwrench started the forum topic SQL: Find Beginning of Today in the group Group logo of Data AnalysisData Analysis: 1 year, 6 months ago

    To find the beginning of today (removing the time component from a datetime column), use the FLOOR function in combination with CAST: Code: SELECT CAST(FLOOR(CAST(getdate() AS float)) AS datetime) This will convert the date to a decimal (float) format, drop the decimal portion, and then cast it again as a datetime. Yahoo – date only; no [...]

  • Profile picture of bobstanke

    bobstanke joined the group Group logo of Data AnalysisData Analysis 1 year, 6 months ago

  • Load More

Log In

Log In
Register

FW Events

  • FWBass: Lake O'Dowd
    • 16 Jun 12
    • Shakopee
  • FWBass: Medicine Lake
    • 18 Jul 12
    • Plymouth
  • FWBass: Maple Lake
    • 15 Aug 12
    • Maple Lake
  • all events

Recent Blog Posts

  • Umbrella Rigs Deemed Illegal In FWBass Events
  • Join the Fishwrench.com Fantasy Racing Group
  • Lunker Logger
  • FWBass Announces 2012 Schedule
  • Fishwrench 5K 2011 Results

FW interest Areas

FW Vault

My Points

  • You need to be logged in to view your points.

Top Users

  • 1) fishwrench: FW POINTS EARNED: 101323
  • 2) chris: FW POINTS EARNED: 100033
  • 3) godfather: FW POINTS EARNED: 666
  • 4) buckshot: FW POINTS EARNED: 448
  • 5) fishhawk: FW POINTS EARNED: 280
  • 6) lwood: FW POINTS EARNED: 270
  • 7) mrfishwrench: FW POINTS EARNED: 267
  • 8) jshackelford: FW POINTS EARNED: 228
  • 9) jfunk44: FW POINTS EARNED: 219
  • 10) enpentz: FW POINTS EARNED: 194

Copyright

© 2012 Fishwrench.com.

  • Return to top

Fishwrench.com
  • Log In
  • Sign Up
  • Visit
    • Random Member
    • Random Group