Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Cyborg)
  • No Skin
Collapse
Brand Logo

CIRCLE WITH A DOT

  1. Home
  2. Uncategorized
  3. Earlier today I was doing something very boring & repetitive - taking a unique identifier, going to the URL specified by that ID, and copying a single piece of information.

Earlier today I was doing something very boring & repetitive - taking a unique identifier, going to the URL specified by that ID, and copying a single piece of information.

Scheduled Pinned Locked Moved Uncategorized
2 Posts 2 Posters 0 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • pixin@fandom.gardenP This user is from outside of this forum
    pixin@fandom.gardenP This user is from outside of this forum
    pixin@fandom.garden
    wrote on last edited by
    #1

    Earlier today I was doing something very boring & repetitive - taking a unique identifier, going to the URL specified by that ID, and copying a single piece of information. 140 times.

    So I used a spreadsheet to simplify the steps, automatically track my progress, and create motivation for myself.

    Step 1: make the URL.
    The IDs were in column A. In column B I used a formula to concatenate them into a URL. In B2, the formula is
    =concatenate("http://example.com/",a2)

    Step 2: Prevent risk of losing my place.
    I copied the URL from a cell, pasted it into my browser, copied the info I need, and pasted it back into the same cell.

    Voila: automatic tracking.

    Step 3: See how many I have left to do.
    In C2 I started with the formula
    =if(isnumber(find("http",b2)),c3+1,"")
    Or in other words once it's copied all the way down the column: if this row still has the url then the formula would show the total number of rows remaining. Otherwise, it showed a blank cell.

    Step 4: Report on what I've already accomplished
    Watching the number in column C decrease wasn't really doing it for me, so I changed that formula to add a report on what I'd accomplished so far:
    =IF(isnumber(find("http",B2)),C3+1,IF(isnumber(find("http",B3)),1-C3/140,""))

    That gave me 0.3429 for what I'd accomplished -- I was a bit over 1/3 of the way through.

    Step 5: Make it pretty
    Lastly I used conditional formatting to show all cells with a value < 1 as a percentage, so 0.3429 became 34.29%, but the number of rows left still showed as plain integers. I'm kinda proud of this because I never thought of it before.

    (And yes, I did finish the task)

    anctreat5358@mindly.socialA 1 Reply Last reply
    0
    • pixin@fandom.gardenP pixin@fandom.garden

      Earlier today I was doing something very boring & repetitive - taking a unique identifier, going to the URL specified by that ID, and copying a single piece of information. 140 times.

      So I used a spreadsheet to simplify the steps, automatically track my progress, and create motivation for myself.

      Step 1: make the URL.
      The IDs were in column A. In column B I used a formula to concatenate them into a URL. In B2, the formula is
      =concatenate("http://example.com/",a2)

      Step 2: Prevent risk of losing my place.
      I copied the URL from a cell, pasted it into my browser, copied the info I need, and pasted it back into the same cell.

      Voila: automatic tracking.

      Step 3: See how many I have left to do.
      In C2 I started with the formula
      =if(isnumber(find("http",b2)),c3+1,"")
      Or in other words once it's copied all the way down the column: if this row still has the url then the formula would show the total number of rows remaining. Otherwise, it showed a blank cell.

      Step 4: Report on what I've already accomplished
      Watching the number in column C decrease wasn't really doing it for me, so I changed that formula to add a report on what I'd accomplished so far:
      =IF(isnumber(find("http",B2)),C3+1,IF(isnumber(find("http",B3)),1-C3/140,""))

      That gave me 0.3429 for what I'd accomplished -- I was a bit over 1/3 of the way through.

      Step 5: Make it pretty
      Lastly I used conditional formatting to show all cells with a value < 1 as a percentage, so 0.3429 became 34.29%, but the number of rows left still showed as plain integers. I'm kinda proud of this because I never thought of it before.

      (And yes, I did finish the task)

      anctreat5358@mindly.socialA This user is from outside of this forum
      anctreat5358@mindly.socialA This user is from outside of this forum
      anctreat5358@mindly.social
      wrote last edited by
      #2

      @pixin I did exactly this when I changed Google accounts and needed to carry over my playlists.

      1 Reply Last reply
      2
      0
      • R relay@relay.infosec.exchange shared this topic
        R relay@relay.publicsquare.global shared this topic
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups