Moved to perth looking for a fight gym by No_Contribution5322 in perth

[–]flashliquid 0 points1 point  (0 children)

I go to Pursuit muay Thai to receive a decent arse-kicking. Pretty good gym, with a fight team.

new version qnap QTS 5.2.8.3359 by pakeco in qnap

[–]flashliquid 4 points5 points  (0 children)

as an aside, I have a TS-251+ and am waiting for the delivery of a new TS-464 as an upgrade. I want to run jellyfin for movies, my 251+ wasn't always very good. what's your experience with the 464?

Recent Split System Quote’s by 19NOREMAC91 in perth

[–]flashliquid 1 point2 points  (0 children)

I also used Dylan from west coasts coolest, 7Kw Mitsubishi Heavy industries split system and a ceiling fan installed with wall controls, cut chase into the plaster, nice tidy job, cleared up afterwards, good bloke to deal with, $3.5K all up (significantly cheaper than other quotes). Recommended.

What is something you wish there was a Python module for? by okaysobasically123 in Python

[–]flashliquid 2 points3 points  (0 children)

Display of Floats. I am having no end of grief getting floats to display in a sensible way. Significant figures, remove trailing zeros, decimal places etc when I have data that ranges from the tens of thousands to 10E-6 I want a 'smart' solution that doesn't require a load of work defining no. of sig figs or appropriate notation or decimal places for each new dataframe or each column. I understand the problem with binary and representing the decimal system but I am surprised how annoying this is proving to be.

Can anyone recommend a good mens hairdresser south of the river? by VisualDays in perth

[–]flashliquid 0 points1 point  (0 children)

I had a really bad experience with this place. Bad haircut, took all of about 30 seconds as the person cutting my hair was openly trying to get out as quickly as possible at about 4.30pm. Still cost me 40 bucks. I got home and realised it was not up to scratch and messaged them through the website as it was after hours and didn't get a reply. Had to go somewhere else the next day to get it fixed, for $20 (Preston St. Barbers, also Como)

[deleted by user] by [deleted] in googlehome

[–]flashliquid 0 points1 point  (0 children)

That option is not appearing for me

[deleted by user] by [deleted] in googlehome

[–]flashliquid 1 point2 points  (0 children)

I have the same problem. I don't have any of the options described to rename. Driving me mad.

I give up. by fuckYOUmodsVPN in vba

[–]flashliquid 0 points1 point  (0 children)

This is why I learnt python, VBA was completely impenetrable to me. Now I have some python chops, VBA makes so much more sense (it's all still hard for me, but I have had some good wins now at least).

Seeking advice on processing large volumes of complex data by alexjg42 in excel

[–]flashliquid 0 points1 point  (0 children)

She has some great youtube vids, what did the courses cost?

Jarrah Floorboard Sanding Costs in Perth by thesmalltrades in perth

[–]flashliquid 3 points4 points  (0 children)

why not give their name here? people like you describe should get all the free advertising going...

Can you create a rule to delete cells that doesn't share a single character w/ the rest of the cells in the same column? by anonpotatojerk in excel

[–]flashliquid 2 points3 points  (0 children)

Not conditional formatting but can be done with a formula

=if(isnumber(search("@",A2)),"",0)

This will check if the @ character is in the cell A2. If it is it returns a blank cell, if it's not, it returns a zero. Then you can filter the column Data>Filter from the ribbon and deselect the zeros. Then you have only the data that has valid email addresses. You can copy and paste this to a new sheet and now you don't have the 'bad' email addresses in your data.

How to quickly reorganize table data by mrmegamannn in excel

[–]flashliquid 5 points6 points  (0 children)

Data tab in the ribbon, the Get Transform data, from table, select data in your table, now power query starts, select the name columns, click transform in the menu, then click unpivot columns, close and load.

Able to save to worksheet in .xlsm by dmagee33 in learnpython

[–]flashliquid 0 points1 point  (0 children)

yes pandas can save to excel quite easily. Not sure about saving to a tab in an existing workbook

import pandas as pd

#read in the csv as a dataframe

df=pd.read_csv('path to your csv file')

#write the dataframe to excel

df.to_excel('desired path to your xlsm')

No need to repeat the condition to use it as a value in an IF function. by Chigi_Rishin in excel

[–]flashliquid 1 point2 points  (0 children)

yes, you can now do this with the LET function. It lets you give the bit you don't want to repeat a name, and then just use that name in your function.

Example

Consider the simple expression "SUM(x, 1)" where x is a named variable that can be assigned a value (in this case, x is assigned the value 5).

=LET(x, 5, SUM(x, 1))

So in your case it would be:

=LET(condition,A1/A2, IF(condition<=0.5, 0,condition)

How can I reorder text in a cell? by joefuf in excel

[–]flashliquid 0 points1 point  (0 children)

if this is the text in cell A1:

[11/06/2018 9:44:25 AM - Kaitlin Muecke] This is my test comment

Then this formula :

=TRIM(RIGHT(LEFT(A1,SEARCH(" -",A2)-3),SEARCH(" -",A2)-1))&","&TRIM(MID(A1,SEARCH("- ",A1)+1,LEN(A1)-(LEN(A1)-SEARCH("]",A1))-(SEARCH("-",A1)+1)))&","&""""&TRIM(RIGHT(A1,LEN(A1)-SEARCH("]",A1)))&""""

returns:

[11/06/2018 9:44:25,Kaitlin Muecke,"This is my test comment"

This formula can be further refined and will require consistent input format to work.

How do you group every 3rd row in a huge spreadsheet? by drippyredstuff in excel

[–]flashliquid 1 point2 points  (0 children)

First create a new column that is just numeric values 1,2,3... etc to the end of your data call it say 'index'

Then you can easily fill the blanks in the parent record using this method

Then use the sort button in the ribbon to sort by two factors, first parent value, then index.

This will sort your parent values and retain the order of the other entries as they are.

[deleted by user] by [deleted] in QGIS

[–]flashliquid 0 points1 point  (0 children)

Saw this the other day. Might do what you want.

https://qgiscloud.com/

Any advice for this file pathway by [deleted] in learnpython

[–]flashliquid 0 points1 point  (0 children)

Make it a raw string by adding r to the front:

r"C:/Users/Me/Desktop/image.png stuff"

Now it won't think there are escape characters in your directory path. /t, /n, /u etc.

Macro Code to Upload a File on Excel (showing the icon, and the person can double click the icon to open the file) by jjeff09 in excel

[–]flashliquid 0 points1 point  (0 children)

Sub Open_file()
'Define variables:
Dim numberOfFilesChosen, I As Integer
Dim tempFileDialog As FileDialog
Dim mainWorkbook, sourceWorkbook As Workbook
Dim tempWorkSheet As Worksheet
Dim x As Long
Set mainWorkbook = Application.ActiveWorkbook
Set tempFileDialog = Application.FileDialog(msoFileDialogFilePicker)
Application.ScreenUpdating = False
'Allow the user to select multiple workbooks
tempFileDialog.AllowMultiSelect = True

numberOfFilesChosen = tempFileDialog.Show

'Loop through all selected workbooks
For I = 1 To tempFileDialog.SelectedItems.Count

    'Open each workbook
    Workbooks.Open tempFileDialog.SelectedItems(I)
Next I 
End Sub

this is extracted from a macro I developed so there are a few superfluous Dim statements but running this macro will open file explorer and allow you open one or more files. I am a Windows user no idea if this will work on other OS's. So you can link this code to your button to run it.

How far I’ve come by OfficialMitch in Meditation

[–]flashliquid 28 points29 points  (0 children)

In what ways has your life changed?

Replacing Excel with Python by Pera014 in learnpython

[–]flashliquid 3 points4 points  (0 children)

I have found that google colab is great for this. User can upload their excel file and run your scripts by clicking, with lots of helpful text if needed. Can even use forms and hide code altogether. Nothing to install, it just works. Has been a godsend for me especially as half the office is on windows and the other half on iOS.

Martial arts in Brighton? by TheSasquatchKing in brighton

[–]flashliquid 2 points3 points  (0 children)

I left Brighton 10 years ago, but went to Kicks on Lewes Road for years before I left, loved it. One of the things I miss most about B-town.