Dominion Strategy Forum

Please login or register.

Login with username, password and session length
Pages: 1 2 [3] 4 5 ... 7  All

Author Topic: On the Job: f.ds edition  (Read 51642 times)

0 Members and 1 Guest are viewing this topic.

Kuildeous

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3840
  • Respect: +2221
    • View Profile
Re: On the Job: f.ds edition
« Reply #50 on: March 26, 2015, 11:53:17 am »
0

I'm retired, so I'm not on the job.

"Then why are you posting to this 'On the Job' thread?" is what I think Witherweaver is asking.

His retirement income pays him to whatever he wants, so he gets paid to Goko.

Which means we can all loathe and envy him and shoot daggers out of our eyes at him.
Logged
A man has no signature

SwitchedFromStarcraft

  • Saboteur
  • *****
  • Offline Offline
  • Posts: 1088
  • Respect: +856
    • View Profile
Re: On the Job: f.ds edition
« Reply #51 on: March 26, 2015, 11:58:32 am »
+1

I'm retired, so I'm not on the job.

"Then why are you posting to this 'On the Job' thread?" is what I think Witherweaver is asking.
Ah, got it.  Allow me to clarify.  I'm mostly retired.  I have my hand in a few things, and the same sorts of issues arise for me as do anyone else on their job.  Those issues don't always involve the things that go on specifically in offices though, as I only go to an office outside my home a few times a month.

PPE: I neither receive money from, nor have ever given money to, Goko, Making Fun, Funsockets, etc.  But I am getting EXTREMELY bored with the base set.  I'd really like to lose with some new cards.  :o
« Last Edit: March 26, 2015, 12:00:34 pm by SwitchedFromStarcraft »
Logged
Quote from: Donald X.
Posting begets posting.

Quote from: Asper
Donald X made me a design snob.

There is a sucker born every minute.

SwitchedFromStarcraft

  • Saboteur
  • *****
  • Offline Offline
  • Posts: 1088
  • Respect: +856
    • View Profile
Re: On the Job: f.ds edition
« Reply #52 on: March 26, 2015, 12:06:33 pm »
+2

The "Update Google" process worked.  I couldn't figure out why it hadn't been happening automatically, as I open and close my browser all the time.  Then I remembered I've had a separate (and reduced) window open for several days now, with research waiting to be reviewed.

LF, thanks for the help.  My google searches were failing because I considered that a "Tool" menu, rather than the main Chrome menu.
Logged
Quote from: Donald X.
Posting begets posting.

Quote from: Asper
Donald X made me a design snob.

There is a sucker born every minute.

Kuildeous

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3840
  • Respect: +2221
    • View Profile
Re: On the Job: f.ds edition
« Reply #53 on: March 26, 2015, 02:19:05 pm »
0

I kind of cringe when I see training offered for "advanced" Excel and "advanced" Access. I've taken advanced Access, and it has not prepared me for the cogs that make this program truly work.

I sit in on some advanced Excel courses, and I know that what's being taught would not prepare students for the formula gymnastics that are in my spreadsheets.
Logged
A man has no signature

enfynet

  • Torturer
  • *****
  • Offline Offline
  • Posts: 1691
  • Respect: +1162
    • View Profile
    • JD's Custom Clubs
Re: On the Job: f.ds edition
« Reply #54 on: March 26, 2015, 02:55:47 pm »
+1

I kind of cringe when I see training offered for "advanced" Excel and "advanced" Access. I've taken advanced Access, and it has not prepared me for the cogs that make this program truly work.

I sit in on some advanced Excel courses, and I know that what's being taught would not prepare students for the formula gymnastics that are in my spreadsheets.
About two months ago I learned (and subsequently abused) INDIRECT and CONCATENATE to make creating new worksheets much easier for my Excel-illiterate coworkers. The instructions I left them were: "Copy this sheet. Change the date in this cell. Done."
Logged
"I have no special talents. I am only passionately curious."

SwitchedFromStarcraft

  • Saboteur
  • *****
  • Offline Offline
  • Posts: 1088
  • Respect: +856
    • View Profile
Re: On the Job: f.ds edition
« Reply #55 on: March 26, 2015, 03:28:17 pm »
0

Good timing for an excel (2003) question:

I'm preparing for a mail merge, and my source for names and address will be an excel spreadsheet.  I'm trying to use the following formula to rearrange a name in cell E2 that appears as "Doe, John" so that it appears in cell F2 as "John Doe".  So I placed this formula in F2:

=RIGHT(E2,LEN(E2)-LEN(LEFT(E2,FIND(",",E2)-1))-2&" "&LEFT(E2,FIND(" ",E2)-1))

What's being returned in E3 is the dreaded error message "#value!" so I know a value used in the formula is of the wrong data type.  The infinite wisdom contained in the help library in locked away never to be approached, and the "trace error" function doesn't appear in the dropdown under the caution icon.  Any thoughts from the experts?

I'm wondering if it is a simple syntax issue, like I need spaces around the two ampersands or something.
« Last Edit: March 26, 2015, 03:29:34 pm by SwitchedFromStarcraft »
Logged
Quote from: Donald X.
Posting begets posting.

Quote from: Asper
Donald X made me a design snob.

There is a sucker born every minute.

Kuildeous

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3840
  • Respect: +2221
    • View Profile
Re: On the Job: f.ds edition
« Reply #56 on: March 26, 2015, 03:43:20 pm »
+1

You had a parenthesis issue. Try this one:

=RIGHT(E2,LEN(E2)-LEN(LEFT(E2,FIND(",",E2)-1))-2)&" "&LEFT(E2,FIND(",",E2)-1)

I also changed the space search to a comma search. It's consistent with the left-hand of your formula, and it also accounts for names like "Huffington III, John Davis".
Logged
A man has no signature

SwitchedFromStarcraft

  • Saboteur
  • *****
  • Offline Offline
  • Posts: 1088
  • Respect: +856
    • View Profile
Re: On the Job: f.ds edition
« Reply #57 on: March 26, 2015, 04:07:59 pm »
0

Thanks.  I printed it out and verify all the parenthesis were properly paired, but didn't check for placement, and obviously missed something.

In the meantime, I successfully wrote three formulae to break the full name into first, middle, and last (with suffix).  I may not need all that depending on what I choose as a salutation, but it gives me any permutation I need using the appropriate concatenation.

Your correction worked perfectly.  Thanks for the help.
Logged
Quote from: Donald X.
Posting begets posting.

Quote from: Asper
Donald X made me a design snob.

There is a sucker born every minute.

GendoIkari

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 9708
  • Respect: +10765
    • View Profile
Re: On the Job: f.ds edition
« Reply #58 on: March 27, 2015, 02:33:14 am »
+7

F.DS... your online resource for Excel strategy.
Logged
Check out my F.DS extension for Chrome! Card links; Dominion icons, and maybe more! http://forum.dominionstrategy.com/index.php?topic=13363.0

Thread for Firefox version:
http://forum.dominionstrategy.com/index.php?topic=16305.0

Davio

  • 2012 Dutch Champion
  • *
  • Offline Offline
  • Posts: 4787
  • Respect: +3413
    • View Profile
Re: On the Job: f.ds edition
« Reply #59 on: March 27, 2015, 08:21:02 am »
0

F.DS... your online resource for Excel strategy.
Do you still get errors when using a different language because all keywords are also translated?

If you had a Dutch version, you couldn't use formulas with "AND" in them, they had to be translated to "EN".
Logged

BSG: Cagprezimal Adama
Mage Knight: Arythea

qmech

  • Torturer
  • *****
  • Offline Offline
  • Posts: 1918
  • Shuffle iT Username: qmech
  • What year is it?
  • Respect: +2320
    • View Profile
Re: On the Job: f.ds edition
« Reply #60 on: March 28, 2015, 01:48:59 pm »
+2

F.DS... your online resource for Excel strategy.
Do you still get errors when using a different language because all keywords are also translated?

If you had a Dutch version, you couldn't use formulas with "AND" in them, they had to be translated to "EN".

EN-GB or EN-US?
Logged

Lekkit

  • 2011 Swedish Champion
  • *
  • Offline Offline
  • Posts: 1253
  • Shuffle iT Username: Lekkit
  • Respect: +674
    • View Profile
Re: On the Job: f.ds edition
« Reply #61 on: March 30, 2015, 10:20:56 am »
0

I'm a switchboard/phone operator at a hospital in Sweden. We have a set-up with a computer hooked up to the Interwebz with an application that communicates both with a database of names and phone numbers, and a switchboard apparatus, so that we can actually handle calls. This apparatus is pretty much an advanced phone and is in turn connected to the actual headsets we use. Currently we're in the process of getting new computers. One co-worker of mine asked me if the new computers' volume would be better. I was confused as we don't really use speakers, since it would be VERY distracting. We have a pair of speakers for the computer that's in use during the night shifts, because there are very few calls and the employees are better off watching something than falling asleep doing nothing. I asked my co-worker if she meant those, because there will most likely be very little difference in volume after the change if that was the case. Turns out she meant the switchboard apparatus that emitts a sound whenever there's an incoming call. It literally took me 20 minutes to explain to her that it's not a part of the computer. And we've talked a lot about how we would keep the apparatuses when we get new computers.

We have newer hardware but this is basically the set up we have.



I guess I'm just baffled at how people who work with these tools don't know what they are and how they work.
Logged

Witherweaver

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 6476
  • Shuffle iT Username: Witherweaver
  • Respect: +7866
    • View Profile
Re: On the Job: f.ds edition
« Reply #62 on: March 30, 2015, 10:23:22 am »
0

So you have the internet on that thing?
Logged

Lekkit

  • 2011 Swedish Champion
  • *
  • Offline Offline
  • Posts: 1253
  • Shuffle iT Username: Lekkit
  • Respect: +674
    • View Profile
Re: On the Job: f.ds edition
« Reply #63 on: March 30, 2015, 10:29:26 am »
+2

No. We only have Google Chrome.
Logged

Kuildeous

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3840
  • Respect: +2221
    • View Profile
Re: On the Job: f.ds edition
« Reply #64 on: April 02, 2015, 03:32:41 pm »
+2

I'm torn between being efficient and being passive-aggressive. Someone sends me a document with changes to be made. She marked some changes, but she used red font, which is unfortunate because the document consists of black and red font. Furthermore, not all changes are marked. I can compare it to what's in the system and see the change.

So I want to teach her a lesson and make only the changes she marked with the hope that the missing info gets caught on follow-up. But I believe in doing a thorough job, and it would just be easier to make the changes as I find them. But I really want to teach her a lesson. I made the changes I caught, but maybe there's something I didn't catch. I kind of hope so.
Logged
A man has no signature

Polk5440

  • Torturer
  • *****
  • Offline Offline
  • Posts: 1708
  • Respect: +1788
    • View Profile
Re: On the Job: f.ds edition
« Reply #65 on: April 02, 2015, 04:08:50 pm »
0

I'm torn between being efficient and being passive-aggressive. Someone sends me a document with changes to be made. She marked some changes, but she used red font, which is unfortunate because the document consists of black and red font. Furthermore, not all changes are marked. I can compare it to what's in the system and see the change.

So I want to teach her a lesson and make only the changes she marked with the hope that the missing info gets caught on follow-up. But I believe in doing a thorough job, and it would just be easier to make the changes as I find them. But I really want to teach her a lesson. I made the changes I caught, but maybe there's something I didn't catch. I kind of hope so.

You could just be assertive and inform her she made a mistake, return it to her, and ask she do it right so you can do your job.
Logged

Witherweaver

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 6476
  • Shuffle iT Username: Witherweaver
  • Respect: +7866
    • View Profile
Re: On the Job: f.ds edition
« Reply #66 on: April 02, 2015, 04:10:47 pm »
+1

Leave passive-aggressive post-it notes throughout the office.
Logged

Kuildeous

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3840
  • Respect: +2221
    • View Profile
Re: On the Job: f.ds edition
« Reply #67 on: April 03, 2015, 01:23:27 pm »
0

I actually cringe when I watch a co-worker navigate inefficiently on a computer. I watched someone click on the task bar to get back to the window he was at before rather than just press Alt+Tab. I had to refrain from pointing out the more efficient manner, because I don't want to end up being that guy. I could so easily do it too, so I try to check myself.
Logged
A man has no signature

theory

  • Administrator
  • *****
  • Offline Offline
  • Posts: 3603
  • Respect: +6125
    • View Profile
    • Dominion Strategy
Re: On the Job: f.ds edition
« Reply #68 on: April 03, 2015, 01:36:47 pm »
+8

Logged

Witherweaver

  • Adventurer
  • ******
  • Offline Offline
  • Posts: 6476
  • Shuffle iT Username: Witherweaver
  • Respect: +7866
    • View Profile
Re: On the Job: f.ds edition
« Reply #69 on: April 03, 2015, 01:45:38 pm »
+1

My boss is not particularly computer savvy.  This resonates so much.  Also, he touches monitor screens :(  His is full of smudges and fingerprints, it drives me crazy.  When he points out something on my screen and touches my screen, I'm internally raging.
Logged

Kuildeous

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3840
  • Respect: +2221
    • View Profile
Re: On the Job: f.ds edition
« Reply #70 on: April 03, 2015, 03:55:12 pm »
+1

Scroll wheel? I'm a PgUp/PgDn kind of guy. But that's because I more easily lose my place with a scroll wheel. I pretty much know where the bottom of the page ends up when I press PgDn.
Logged
A man has no signature

enfynet

  • Torturer
  • *****
  • Offline Offline
  • Posts: 1691
  • Respect: +1162
    • View Profile
    • JD's Custom Clubs
Re: On the Job: f.ds edition
« Reply #71 on: April 03, 2015, 04:12:53 pm »
0

I'm not alone!
Logged
"I have no special talents. I am only passionately curious."

qmech

  • Torturer
  • *****
  • Offline Offline
  • Posts: 1918
  • Shuffle iT Username: qmech
  • What year is it?
  • Respect: +2320
    • View Profile
Re: On the Job: f.ds edition
« Reply #72 on: April 03, 2015, 06:36:23 pm »
+1

I'm not alone!

Yeah, I thought I was the only one who didn't know how to use the scroll wheel.
Logged

SwitchedFromStarcraft

  • Saboteur
  • *****
  • Offline Offline
  • Posts: 1088
  • Respect: +856
    • View Profile
Re: On the Job: f.ds edition
« Reply #73 on: April 03, 2015, 07:59:13 pm »
+1

I'm not alone!

Yeah, I thought I was the only one who didn't know how to use the scroll wheel.
I have recently replaced a mouse with two scroll wheels, one of which I never used, but which worked in opposition.  The one I used I never changed from the way it was programmed upon receipt, which was backward from "normal".  It drove my wife nuts when she would sit down at my computer.
Logged
Quote from: Donald X.
Posting begets posting.

Quote from: Asper
Donald X made me a design snob.

There is a sucker born every minute.

Kuildeous

  • Cartographer
  • *****
  • Offline Offline
  • Posts: 3840
  • Respect: +2221
    • View Profile
Re: On the Job: f.ds edition
« Reply #74 on: April 06, 2015, 01:35:48 pm »
0

That is the fastest that my Excel sheet has refreshed all its formulas. I am suddenly suspicious.
Logged
A man has no signature
Pages: 1 2 [3] 4 5 ... 7  All
 

Page created in 0.502 seconds with 20 queries.