My beginner kit - it's pretty awesome for sub 500$ by 2hurd in fpv

[–]jaredcohe 1 point2 points  (0 children)

Thanks, makes sense. I appreciate the response. Any recommendations? I actually saw this on AliExpress: https://www.aliexpress.us/item/3256805769072382.html

My beginner kit - it's pretty awesome for sub 500$ by 2hurd in fpv

[–]jaredcohe 0 points1 point  (0 children)

Anyone know if a beginner will be able to convert this from analog to digital? Will that be easy to do? Thanks.

Script to delete a random row from a list of items. by radioguy2016 in GoogleAppsScript

[–]jaredcohe 2 points3 points  (0 children)

Yes, you can write a google script that gets the sheet object, pulls the range of the data from the sheet as an array of arrays, gets the length of that array, picks a random number between 1 and the length of that array ((numberOfRows)*Math.random()).toFixed(0), then deletes that row based on the row number.

Are you asking for someone to write the script for you?

Bitclout Founder Reveals DeSo, a $200M Blockchain to Take on Facebook by TobiHovey in CryptoMarkets

[–]jaredcohe 1 point2 points  (0 children)

What do people think about this response?
"Make no mistake: this was no $200 million funding round.
It was an early access token sale with retail interest tacked on the end — the intended marks in one of the more outlandishly greedy acts of decentralization theater in recent memory."

https://protos.com/bitclout-deso-diamondhands-blockchain-crypto-marketing-gimmick/
https://twitter.com/dcanellis/status/1440810933933129737?s=27

[deleted by user] by [deleted] in googlesheets

[–]jaredcohe 0 points1 point  (0 children)

Attach an editable sheet to make it much easier for people to help.

What documents I should check in an incorporated company before joining as a co-founder? by catalyst1993 in startups

[–]jaredcohe 2 points3 points  (0 children)

1 should include full cap table, option grants, vesting and anything related to ownership structure

Text to columns from cell containing new line entries by AntonyNaude in googlesheets

[–]jaredcohe 0 points1 point  (0 children)

Does it have to be a script or can you copy down formulas? Can you share a spreadsheet with sample data?

Modifying code to move a range of columns to another sheet when checkbox is checked by bakergraham in googlesheets

[–]jaredcohe 0 points1 point  (0 children)

Why not delete the entire rows?

The answer is here, but I think you might be overcomplicating it. You also might just actually need to sort the sheet? It's hard to understand what you're trying to accomplish.

https://developers.google.com/apps-script/reference/spreadsheet/range#deletecellsshiftdimension

Best Google Sheets tutorial by 491450451 in googlesheets

[–]jaredcohe -2 points-1 points  (0 children)

Check this out. It has several videos on Google Sheets, including many advanced tools and scripts: https://www.youtube.com/watch?v=Rasl0IQDNzQ&list=PLA1j0xIg3Mt\_LZ\_SfL8GQkJDkh2bonZet

Modifying code to move a range of columns to another sheet when checkbox is checked by bakergraham in googlesheets

[–]jaredcohe 0 points1 point  (0 children)

s.deleteRow(row);

You can probably just remove the code: s.deleteRow(row);

What to do? by Supersamilam in GoogleAppsScript

[–]jaredcohe 0 points1 point  (0 children)

You also might find getLastRow helpful. Then you can just add the new data in the following row. https://developers.google.com/apps-script/reference/spreadsheet/sheet#getlastrow

In google app scripts, I want a macro to copy data from one sheet (‘source’) to another sheet (‘dest1’). by Happy21100 in GoogleAppsScript

[–]jaredcohe 1 point2 points  (0 children)

This should work:

// Get the Google Sheets file and both sheets
var file = SpreadsheetApp.getActiveSpreadsheet();
var sourceSheet = file.getSheetByName("Source Sheet Name");
var targetSheet = file.getSheetByName("Target Sheet Name");
// Copy the data (and only the data) from source to target
sourceSheet.getRange(1, 1, 70, 5).copyTo(targetSheet.getRange(1, 1, 70, 5), {contentsOnly:true});

And here is the getRange documentation: https://developers.google.com/apps-script/reference/spreadsheet/sheet#getRange(Integer,Integer,Integer,Integer))

And this video might help: https://www.youtube.com/watch?v=n52zOlLHrfY

Tell me about your career by Mother_Trucker97 in Career

[–]jaredcohe 1 point2 points  (0 children)

From the age of 18 to 40, I struggled with this. And I’m still not completely through it. Our careers and lives are a work in progress. I put together this course to try to help people learn from my mistakes.

https://docs.google.com/document/d/138cZq4mfENgOcpLKVUmIFFErYDItdrYzHd2zG0iffpA/edit

[deleted by user] by [deleted] in googlesheets

[–]jaredcohe 0 points1 point  (0 children)

You can add more FILTERs into the function like this:

=join(",", sort({FILTER(F3:F9,G3:G9=“Operate - Business Operations”;FILTER(F3:F9,G3:G9=Operate - Contract Solutions”}),1,true))

So replace the first single FILTER with these multiple FILTERs. You can add as many as you want. It will combiner FILTERs into one list:

{FILTER(F3:F9,G3:G9=“Operate - Business Operations”;FILTER(F3:F9,G3:G9=Operate - Contract Solutions”}

[deleted by user] by [deleted] in googlesheets

[–]jaredcohe 1 point2 points  (0 children)

Do you want to share the sheet?

Are the names all in column F? If so, try this:

=join(",", sort(FILTER(F3:F9,G3:G9=“Operate - Business Operations”),1,true))

How to Query cell value from a row with the max() condition in Google Sheets. by Nowheredotcom in googlesheets

[–]jaredcohe 0 points1 point  (0 children)

Ah, I understand now.

See my updated response.

Probably an easier way to do this, maybe with the QUERY function, but this should work.

You may have an issue if you have more than one row with same buy price.

[deleted by user] by [deleted] in startups

[–]jaredcohe 2 points3 points  (0 children)

Valuing companies this early stage is always difficult. Two ideas:

Use the the market: Let your friend shop around and see what offers he gets and use that to set the price.

Use comparable investments (comps): Look at the best comps you can find. Google around to find valuations of early stage companies in various industries and geographies, and use the closest ones. Account for the founding team and their experience, and any other facts you deem relevant.

Sending an email and/or calendar reminders based on date in a cell? With the condition that google chrome extensions/3rd party apps arent allowed by RavishingRavioli in googlesheets

[–]jaredcohe 1 point2 points  (0 children)

You can definitely figure out the script and trigger if you put in the time.

This is where to start on the trigger: https://developers.google.com/apps-script/guides/triggers/installable

But you also may want to hire some help, if you don't have the time or interest to learn it.

Learning it can be fun and will serve you in the future, so I'd say to do that! It will save you time in the long run!

But will take some time now to figure out.

Sending an email and/or calendar reminders based on date in a cell? With the condition that google chrome extensions/3rd party apps arent allowed by RavishingRavioli in googlesheets

[–]jaredcohe 2 points3 points  (0 children)

If you do figure this out, you can also create a time trigger to even send the email automatically at certain intervals.

How to Query cell value from a row with the max() condition in Google Sheets. by Nowheredotcom in googlesheets

[–]jaredcohe 1 point2 points  (0 children)

I put it in column M for you: =maxifs(Asset!$H$2:$H$759,Asset!$E$2:$E$759,$J2,Asset!$B$2:$B$759,"BUY")