Comment on
Inspired by reading everyday news
Reply in thread
Alternatively, if we wait long enough we always have the heat death of the universe to look forward to.
Comment on
Inspired by reading everyday news
Reply in thread
Alternatively, if we wait long enough we always have the heat death of the universe to look forward to.
Comment on
Elon refusing to pay google for hosting could be behind the instability issues.
Reply in thread
I used to work at an electronics manufacturer in the US and our vendors had the same deals etched out in their invoices.
Comment on
Gaston - Chris Hallbeck
Reply in thread
Now we just need food bowls that shake the food on their own.
Comment on
What is a decision or action you made, despite it being clearly stupid?
I quit my job without any plan at all on what I was going to do next. I was the sole IT worker for an SMB and had been for the past decade. I was burned out, exhausted, and jaded.
Now I'm going back to school, so I guess it wasn't the WORST decision. I definitely could've handled it better, though.
Comment on
UX: When viewing an image preview, pressing the back button should close the preview, instead of navigating back on the menu the image is covering.
Alternatively, maybe you can "flick" the maximized image up and it will dismiss it? Not sure if that would be easier.
Edit: That actually already works, at least on Android with FireFox.
Comment on
TIL that salt rock, the stuff used during winter, helped contribute to the Flint Water Crisis
Reply in thread
Ope! Just gonna squeeze past ya quick.
Comment on
Where can I post questions on how do construct formulas in Onlyoffice/Libreoffice spreadsheets?
Reply in thread
Okay, I couldn't wait so here are my formulas based on the following parameters:
1.) Numeric data always follows in rows after the correct alpha value. IE Anything between A and B values in the A column belong to the A group. Anything between the B and C values in the A column belong to the B group.
2.) You want the output to be in two separate columns.
Given that your input data is in column A and the value "A" begins at A1, here is your formula for B2 (B1 will be empty as there is no numeric value to tie to A1)
=IF(ISERROR(A2/1),"",A2)
This will put numeric values only that are in column A into column B.
Again, given that your input data is in column A and the value "A" begins at A1, here is your formula for C2 (C1 will again be empty as there is no numeric value for your array in A1)
=IF(ISERROR(A2/1),"", IF(ISERROR(A1/1),A1,IF(ISERROR(C1/1),C1,1)))
This will put the correct alpha values from column A into column C in the same rows as the numeric values from column B. If something goes really wrong, it will place the number 1.
Given that there are no gaps in your data, you should just be able to fill down and it'll appropriately put the correct values into columns B and C. At that point, I'd just paste the values of columns B and C into a new sheet (or columns) and sort the data to remove the blank rows.
I just tested it in LibreOffice Calc, and it works perfectly (given those parameters).
Edit: Repeated a word.
Comment on
they make a lot
What's always been funny to me is that Yamaha also seems to have the cheapest and some of the most expensive stuff too. Look at (piano) keyboards for example.
Comment on
*Permanently Deleted*
Reply in thread
You just made me picture The Matrix but instead of humans as the "batteries" its nothing but Agent Smith clones being policed by yet more Agent Smith clones.
Comment on
Inspired by reading everyday news
Reply in thread
Very true.
Comment on
Where can I post questions on how do construct formulas in Onlyoffice/Libreoffice spreadsheets?
Reply in thread
I usually divide a cell's value by 1. A value that isn't numeric will throw an error. Combining that with ISERROR or IFERROR, you can do some pretty powerful stuff.
Comment on
Where can I post questions on how do construct formulas in Onlyoffice/Libreoffice spreadsheets?
Are the numeric values always correctly sorted in the cells below the alpha data cells? IE, youd never have A numeric values, then B numeric values, then more A numeric values?
Also just to be clear, are you putting the results in a single cell, or does the comma in your example denote separation between two cells? I'm guessing two cells. I want to work on this, but I just want to make sure I'm working on the correct thing :)
Comment on
IAmA mods no longer willing to work for reddit for free
Reply in thread
gone sexual
Comment on
Cat rule
Reply in thread
Dug is a handsome boy.
Comment on
Finding this community
Reply in thread
Way of the road Bubs.
Comment on
what are some of the best purchases you've made ?
Reply in thread
Ive had both a basket model and the "toaster oven" style. At least in my case, I much prefer the latter. Its just my personal preference, though.
Comment on
IAmA mods no longer willing to work for reddit for free
Reply in thread
"Act your wage"
Comment on
Where can I post questions on how do construct formulas in Onlyoffice/Libreoffice spreadsheets?
Reply in thread
Still thinking about this, if the "alpha" value in column A is actually a date value, this formula would need more checks. Let me know if that's the case, and I can work something out.
Comment on
Where can I post questions on how do construct formulas in Onlyoffice/Libreoffice spreadsheets?
Reply in thread
And you were correct! I take sample data too literally lol
Comment on
Where can I post questions on how do construct formulas in Onlyoffice/Libreoffice spreadsheets?
Reply in thread
Actually, shoot... After rereading your reply, I might have taken your example data too literally. Are the alpha values truly always alpha and your numeric values always numeric? Otherwise it won't work, and I'll have to find another solution.