#ms excel and ms excel
Explore tagged Tumblr posts
computercourses23 · 1 year ago
Text
youtube
0 notes
rainbow-taishi · 1 year ago
Text
HSR Jiaoqiu made in Microsoft Excel
+ snippet on how I made it
Tumblr media
9K notes · View notes
saydesole · 4 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
Black Southern Blues Singers
Happy Black History ✊🏿
Marvin Sease 1946-2011
Betty Wright 1953-2020
Johnnie Taylor 1934-2000
Denise Lasalle 1934-2018
Z.Z Hill 1935-1984
Ms. Jody 1957- Living
Mel Waiters 1956-2015
Tyrone Davis 1938-2005
994 notes · View notes
phoenixyfriend · 8 months ago
Text
New OC clones idea
His name is XL. He's average clone size, so people are naturally curious about what the name means. They ask if it's a dirty joke about his dingaling.
It's not. He pulls up some files. He's the quartermaster. He uses Space Excel, and it's not CALLED Excel, but he Excels at it. Hence XL.
His friends in two other battalions are Spread and Sheets. All of them get asked the Is It A Dirty Joke question and ALL respond with The Same Fucking Move (files).
This clone's job is spreadsheets and he LOVES it.
464 notes · View notes
takapuolikuu · 2 months ago
Text
Montako ihmistä tarvitaan excelin mielestä vaihtamaan palovaroittimen paristo?
1. tammikuuta 1990
111 notes · View notes
ingravinoveritas · 2 years ago
Text
Tumblr media
Someone shelving a DVD of Staged series 1 and 2 in the LGBTQ+ section of a shop is entirely too accurate and will never not be hilarious...
466 notes · View notes
every-pauling · 6 months ago
Text
Tumblr media
let’s fucking GO
106 notes · View notes
mint-ty · 5 months ago
Text
Guyyyyysssss I got a job offer!!!! 😭😭😭 after a full year of jerking off I can finally be back in society!! I was so burned out from my last job and basically had quit on a spot when I was told (TOLD!) to do even more overtime than I was already doing. It took me around 7 months to feel like I wouldn't puke from just hearing my alarm clock again. It also means that from next month I will stop spamming tumblr like it's my main occupation 😂 (I probably will be spamming only in the evenings, we'll see).
It also means that my first salary will go to buying bojere commissions 😌
56 notes · View notes
tatzelwyrm · 3 months ago
Text
If I had watched this episode before Covid I might have thought the townspeople's aggression and readiness to turn to violence was a bit exaggerated.
But since I'm watching this in 2025, the only part of this episode I find unrealistic is that there isn't also a counter mob denying that anthrax is real.
31 notes · View notes
ostolero · 4 months ago
Text
learned a new fuckening excel formula
after doing this kind of work for 10 years professionally
it's something incredibly obvious but I was doing it with writing out formulas because I'm too smart for my own good
background:
"upper()" and "lower()" are used on text strings to change the case of the letters. so for example:
upper("apple") = APPLE
lower("Fuck You") = fuck you
and so...
sometimes I would want to make a name like
diane mononym
or
DIANE MONONYM
into
Diane Mononym
and so I would use left() and right() and mid() to pull that shit out carefully and re-assemble it together. I was going to keep it brief because it's a bunch of bullshit but I decided to sit down and write out the formula because the people ought to see bullshit if they really wanted.
below the jump.
before we dive in, let me explain some of the formulas here for your reference.
some stuff with strings:
upper([string]) make the string upper case lower([string]) make the string lowercase concatenate([string) put the contents together as a single string left([string],[number]) take X-many characters off the left right([string],[number]) take Y-many characters off the right trim([string]) remove extra spaces from the string
and some stuff with math:
len([string]) measures how many characters there are in a string for example: "diane" is five (5) letters long, "mononym" is seven (7) characters long search([desired character],[string]): this is used to find a specific character in a string. so like here we'll look for " " the space character. which will denote how far in number of characters into the string that is so for example in "diane mononym" the space " " is six (6) characters in, where the name would be split in half
and so the strategy is to split the name into two words, then split the words into two parts, the first letter and the rest of the characters
so here we go.
the written-out formulas:
A1 ="diane mononym"
B2 =CONCATENATE(
UPPER(LEFT(TRIM(LEFT($A$1,SEARCH(" ",A1))))),
LOWER(RIGHT(TRIM(LEFT($A$1,SEARCH(" ",A1))),LEN(TRIM(LEFT($A$1,SEARCH(" ",A1))))-1)),
" ",
UPPER(LEFT(TRIM(RIGHT($A$1,LEN($A$1)-SEARCH(" ",$A$1))),1)),LOWER(RIGHT(TRIM(RIGHT($A$1,SEARCH(" ",A1))),
LEN(TRIM(LEFT($A$1,LEN($A$1)-SEARCH(" ",A1))))-1))
)
blink yet?
let me annotate this to explain what's happening here.
here's the formulas, annotated:
A1 ="diane mononym" // I wrote this out
B2 =CONCATENATE( // combine this as one string
UPPER(LEFT(TRIM(LEFT($A$1,SEARCH(" ",A1))))),
// use the space character to find out where the space is and grab the left of the two words, take the first character from the left and make it uppercase
LOWER(RIGHT(TRIM(LEFT($A$1,SEARCH(" ",A1))),LEN(TRIM(LEFT($A$1,SEARCH(" ",A1))))-1)),
" ",
// use the space character to find out where the space is and grab the left of the two words, take the remaining characters from the right and make them lowercase
UPPER(LEFT(TRIM(RIGHT($A$1,LEN($A$1)-SEARCH(" ",$A$1))),1)),LOWER(RIGHT(TRIM(RIGHT($A$1,SEARCH(" ",A1))),
// use the space character to find out where the space is and grab the right of the two words, take the first character from the left and make it uppercase
LEN(TRIM(LEFT($A$1,LEN($A$1)-SEARCH(" ",A1))))-1))
// use the space character to find out where the space is and grab the rightof the two words, take the remaining characters from the right and make them lowercase
)
the laborious result:
A1 = diane mononym
B2 = Diane Mononym
This works pretty nicely and with the individual components broken out, you can even do funky stuff like reformat the name to something like
Mononym, Diane
but astute readers will note a specific limitation of this method. what if your person has three names (a middle, naturally),
you are completely shit out of luck.
may as well start this at 9 AM because this is going to take longer than it has to. I am not going today though because getting here writing this has already taken up the better part of an hour.
and I went searching for this because reformatting a name like "KATHERINE HENNESY TEMPO" into "Katherine Hennessy Tempo" would have devoured my soul
but the trick is to use if we're hypothetically tackling this is to be able to count Z-many additional spaces to break up but it's not dynamic. you need to keep adding formulas for each additional segment. hell on earth so let's not
and that's where I arrived at too. hm maybe I'm not too ambitious for my own good.
and so I found it immediately on a brief and mundane stack overflow page. behold. the new formula I did not know existed before today
PROPER()
which does that automatically.
just makes the first letters of a word............ Proper.
Dynamic Mixed Case.
GUESS I better go Fuck Myself
GUESS I BETTER GO FUCK MYSELF
guess i better go fuck myself
Guess I Better Go Fuck Myself
thank you for reading
edit: 20 min later
Tumblr media
35 notes · View notes
computercourses23 · 1 year ago
Text
How to copy a table from MS Word to Excel? Copy a table from word to excel
But when we convert any data from Word to Excel i.e. copy the table from MS Word and paste it in Excel, then the table gets pasted in Excel but it is not pasted correctly.
Some data is not pasted in one cell but gets pasted in different cells or some cells get merged in Excel. Due to which we have to work on that data again in Excel.
We have to unmerge the cells. Formatting also has to be set or removed separately and the text that we need in the same cell has to be entered again manually.
But now there is no need to worry because in this article you have been told the solution to this problem. Now you will not need to work in Excel again after pasting the table from MS Word to Excel. For this you will have to follow some steps which are explained in detail below.Read More
0 notes
barcodenumber00 · 5 months ago
Text
the innies at mammalians nurturable seem to be there permanently. or they seem to be unable to leave.
most of them appear to be unclean, or have no access to personal care or are unclear on how to interact with people. if ms. huang was acquired by the company as a child, or if lumon has no issue taking on children, who's to say at least some of the employees at mammalians nurturable weren't also brought in as children, severed young enough that their memories were split before their minds could fully develop, flocking to the sound of a bell - like a school bell, maybe? (we see in ms. cobel's shrine that the Eagans owned schools)
What if they were the very first to be severed and they were hidden down below as failed experiments on young children? mammalians nurturable is also an interesting name. humans are mammals too.
his outie excelled at stargazing - glow in the dark stars in a child's bedroom.
34 notes · View notes
obi-wann-cannoli · 4 months ago
Text
Okay so Mr Milchick in this episode - to me it felt like he was saying reprimands he himself had received as a child. And it has that clear Kier cult vibe to it.
Combine that with his discussion with Ms Huang regarding her fellowship, implying there’s a specific program Ms Huang is a part of that Milchick possibly has experience with?
Combine THAT with the theory that Cobelvig has been in the Kier cult since she was a child.
And I think we’re seeing three people raised fully in the Kier cult (either as orphans or with their family) chosen specifically to manage the severed floor. (And a potential parallel to the Eagen family itself? Maybe? It’s a stretch)
35 notes · View notes
ruushes · 6 months ago
Text
Tumblr media
the ginormous cartoon mallet is perfect 10/10 no notes but what is with this pose 😭😭
37 notes · View notes
starleska · 1 year ago
Text
a compilation of some of the similarities between Maestro and the Toymaker...i reckon even if it wasn't stated explicitly, we could've guessed the connection 😉
83 notes · View notes
magratpudifoot · 2 months ago
Text
Pit orchestra was one of the most enjoyable--and most terrifying*--things I have ever done, and I miss it a lot.
* We did a show one year with a bridge over the middle of the pit, and there was a scene where one of the actors vacuumed the bridge. One night, the length of the vacuum cord that was stretched over the gap from the bridge to the main stage went a little slacker than usual, and we watched as it swung vigorously back and forth *right next to our conductor's desk lamp*. We started (very quietly) amending our plan for how we were going to pull everyone to safety if the bridge started to collapse to include an alternate plan for how we could all get out of the pit from only one staircase if the conductor's piano, which was set up *on the second staircase*, caught fire because of a vacuum-related desk lamp explosion.
13 notes · View notes