google-sheets-formula

Formula to create multiple possible results

廉价感情. 提交于 2021-01-05 08:58:19
问题 The spreadsheet I am devising is to help me with the scoring of a football (or soccer depending where you're from) forum game I run. The idea is that each player picks 10 football teams and they get a point for each goal scored. However, they also pick one team which they think will not score any goals. If their team doesn't score they get 3 points but if the team does score they lose a point for every goal the team scores. For example - Example A) The player picks Man Utd to not score a goal

Formula to create multiple possible results

自古美人都是妖i 提交于 2021-01-05 08:56:56
问题 The spreadsheet I am devising is to help me with the scoring of a football (or soccer depending where you're from) forum game I run. The idea is that each player picks 10 football teams and they get a point for each goal scored. However, they also pick one team which they think will not score any goals. If their team doesn't score they get 3 points but if the team does score they lose a point for every goal the team scores. For example - Example A) The player picks Man Utd to not score a goal

Formula to create multiple possible results

梦想的初衷 提交于 2021-01-05 08:55:35
问题 The spreadsheet I am devising is to help me with the scoring of a football (or soccer depending where you're from) forum game I run. The idea is that each player picks 10 football teams and they get a point for each goal scored. However, they also pick one team which they think will not score any goals. If their team doesn't score they get 3 points but if the team does score they lose a point for every goal the team scores. For example - Example A) The player picks Man Utd to not score a goal

Autolock Google Sheets cells after the first entry

喜夏-厌秋 提交于 2021-01-01 08:40:36
问题 I'm trying to use Google Sheets as a sales register for my business. However, there is a specific detail I'd like to configure about the input of information, but couldn't sort it out yet. I created a table where you enter all the information (such as the date, item sold, total amount, etc.). Everything works perfectly with the table. However, I would like it to automatically prevent any changes to the information in any cell, right after said information has been entered. Let's say someone

Formula to make dropdown menu choice follow specific text?

雨燕双飞 提交于 2020-12-15 01:58:20
问题 I made a task tracker which takes my tasks from the main group Google Spreadsheet and arranges them in order in my tracker spreadsheet by date. I also included a dropdown list to mark the status of each task. It's all working the way I hoped it would except for the status option - the data from the group spreadsheet changes frequently (tasks are removed and added) and when this happens, the list in my spreadsheet gets automatically updated and get shifted around based on the new tasks and

Is there a Google Sheets function to squeeze a range into one column?

有些话、适合烂在心里 提交于 2020-12-13 04:34:49
问题 I wanted to find the built-in function for this to no avail so I had to write it in script: function squeeze(range) { return [].concat(...range).filter(n => n) } This JS function flattens the 2D array range and returns it. Note that it filters out empty cells with uneven columns. 回答1: While not officially documented (yet), flatten() also exists as a built-in formula. See here for more info. 回答2: if FLATTEN gets removed by some evil google dude you can do: =TRANSPOSE(SPLIT(QUERY(TRANSPOSE

How to optimize many importxml from the same website?

不羁的心 提交于 2020-12-07 03:40:23
问题 I have a Google Sheet where rows are products and columns are information about these products (Material, Color, Price, ...). These information are retrieved using the function IMPORTXML with the corresponding xpath query. In the following example, the column D is the URL of this product. These functions retrieve information (Glass, Color and Type) for the product on row 3: =IMPORTXML(D3,"//table[@class='info-table']/tr[th/text()[contains(.,'Glass')]]/td") =IMPORTXML(D3,"//table[@class='info

Ho do I stop and start autoupdating in Google Sheets?

本秂侑毒 提交于 2020-11-29 10:23:37
问题 I have a spreadsheet in which a few sheets are very complex formulas which take a while to run. I want to be able to update the support pages and only run the sheets with formulas when they have focus. Is there anyway to do this in Google Sheets? 回答1: As I understand, the recalculation settings in Google Sheets only have effect for certain functions like NOW and RAND. The alternative is to use scripts instead of formulas. References Change locale, time zone, and recalculation settings - Docs