#ms excel and ms excel
Explore tagged Tumblr posts
Text
youtube
0 notes
Text
HSR Jiaoqiu made in Microsoft Excel
+ snippet on how I made it
#cioccolatodorima#my drawings#anime#drawing#manga#fanart#shitpost#honkai star rail#star rail#hsr jiaoqiu#ms excel#excel art
9K notes
·
View notes
Text








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
#black blues singers#blues is black culture#black power#black excellence#black history month#black people are the blueprint#southern music#down south#down home blues#z.z hill#mel waiters#johnnie Taylor#tyrone Davis#marvin sease#betty wright#ms Jody#old school#blues music#black and proud#we are history#our story#legacy#candy licker#black men#black women rights#black women#black history#everyday is black history#black history lessons#hbcu
994 notes
·
View notes
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.
#spreadsheets#ms Excel#excel#Microsoft excel#star wars#the clone wars#clone trooper oc#Phoenix Talks
464 notes
·
View notes
Text
Montako ihmistä tarvitaan excelin mielestä vaihtamaan palovaroittimen paristo?
1. tammikuuta 1990
#excel#ms office#paskat vitsit#suomitumblr#suomitumppu#suomipaskaa#bad puns#dad jokes#puujalat kolisee#isä vitsit#emt odotelen täs et ruoka ois valmista
111 notes
·
View notes
Text

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...
#michael sheen#welsh seduction machine#david tennant#soft scottish hipster gigolo#staged#or 'Brokeback Mount Him' which is what i am referring to Staged as from here on out#either the person who shelved it is an MS/DT shipper#or they saw the cover and decided it was queer based on that alone#or they watched it and saw the same thing we all saw#all excellent possibilities#could they possibly look more like a couple#bisexual disasters the both of them#amazing#ineffable lovers#lolz#discourse
466 notes
·
View notes
Text

let’s fucking GO
106 notes
·
View notes
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 😌
#MS Excel my love and my nemesis#let's hope I survive their trial period 🤞#personal#I guess it also means I have 3 weeks to finish all my wips %)
56 notes
·
View notes
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.
#rawhide#rawhide (1959)#this is a very good episode#not only is there excellent whump#but there is continuity between episodes???#and i love ms 'i'm a nurse'#gotta be my favourite female character on the show so far#also the way everybody is like#'oh no poor rowdy he is only a boy'#even though rowdy is almost 30#but he's just so cute i guess#tatzelwyrm watches rawhide
31 notes
·
View notes
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

35 notes
·
View notes
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
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.
#severance s2#severance theory#severance#do I think this could be true? honestly idk#but the words ms casey gave at wellness were always layered with alternative meaning#theres something more to the stargazing bit and the employees at MN are... weird#there's something going on there#they give off a vibe that they've been there a long time#Ive seen theories as well that they are homeless#he excels at stargazing because hes often outside or without a roof#but they are bringing up that lumon has a long history#without really mentioning when severance as a process was first introduced
34 notes
·
View notes
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)
#nina has thoughts#severance#severance spoilers#ms huang#ms cobel#idk if this theory is correct. but it feels possible#milchek’s mirror scene was EXCELLENT btw#get that man an Emmy!#trammell tillman#mr milchick
35 notes
·
View notes
Text
the ginormous cartoon mallet is perfect 10/10 no notes but what is with this pose 😭😭
#idk abt warrior so far man it’s kind of just slow rogue#but the big kick is excellent so i have hope#she’s still very much in development but#rook thorne#my ocs#datv#dragon age#talkin#my nevemancer…. ms. gallus i’m coming for u
37 notes
·
View notes
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 😉
#this isn't even counting Maestro's treble clef-hair looking like the Toymaker's fright wig#or them both having gorgeous bandleader outfits#i believe that both Ms. Flood and the Doctor have that winking sound effect though#which leads me to believe it's a consequence of the blurring between reality and fiction in this season#i do think that'll be the fault of another of the Toymaker's legions - likely Ms. Flood as the embodiment of Story#...but it's still fun to go 'hahaha look he passed on this trait' 😂#glad to see they both have EXCELLENT emotional regulation 💀#maestro#the toymaker#doctor who spoilers#doctor who#the doctor#fourteenth doctor#fifteenth doctor#ruby sunday
83 notes
·
View notes
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.
#no one asked you ms p#legitimately the most fun i had in any after school activity#and i was in some excellent after school activities#i occasionally think about practicing up and seeing if i can maybe find a community theater that needs a flutist who hates high notes
13 notes
·
View notes