array-formulas

Google Sheets Arrayformula for maxifs

夙愿已清 提交于 2020-06-27 16:24:10
问题 G'day people, I am a long time supporter/reader but this is my first time posting on Stackoverflow so please bear with me. Example of the Sheet I am working in =if(E2="",,If(maxifs($E:$E,$K:$K,K2)=E2,K2,"")) I am a little stumped on converting this maxifs formula above that I am trying to convert to an arrayformula in Google Sheets. This formula checks to ensure E2 (timestamp) is not blank and then compares then looks all over the timestamp column for a newer timestamp for a distinct

Google Sheets Arrayformula for maxifs

六月ゝ 毕业季﹏ 提交于 2020-06-27 16:24:05
问题 G'day people, I am a long time supporter/reader but this is my first time posting on Stackoverflow so please bear with me. Example of the Sheet I am working in =if(E2="",,If(maxifs($E:$E,$K:$K,K2)=E2,K2,"")) I am a little stumped on converting this maxifs formula above that I am trying to convert to an arrayformula in Google Sheets. This formula checks to ensure E2 (timestamp) is not blank and then compares then looks all over the timestamp column for a newer timestamp for a distinct

Combining Data From Many Cells into One

。_饼干妹妹 提交于 2020-06-17 08:35:17
问题 Im putting together a pretty lengthy spreadsheet in google spreadsheets. This spreadsheet contains information about products ie name, brand, part number, ect... I was helped previously and given some nice solutions but I am still running into limitations. What I am trying to do is generate, automatically, a description field based on information in other cells. The formula I am using in the descriptions column is ="Brand Name"&" "&A3&" "&B3&" "&(joinVals(E3:G3," x "))&" "&K3 joinVals(E3:G3,"

Combining Data From Many Cells into One

人盡茶涼 提交于 2020-06-17 08:34:09
问题 Im putting together a pretty lengthy spreadsheet in google spreadsheets. This spreadsheet contains information about products ie name, brand, part number, ect... I was helped previously and given some nice solutions but I am still running into limitations. What I am trying to do is generate, automatically, a description field based on information in other cells. The formula I am using in the descriptions column is ="Brand Name"&" "&A3&" "&B3&" "&(joinVals(E3:G3," x "))&" "&K3 joinVals(E3:G3,"

Replace Content of a cell based on a list of options in Google Sheets

谁说我不能喝 提交于 2020-06-17 00:55:14
问题 For years I have been using a very long formula to help me achieve what I am going to ask here. Basically, every month I download my Credit Card statement and use a bunch of formulas to sum it up in a better way to import into my accounting software. What my formulas do is that it reads the Description in each row and based on the content of that row it rewrites that description. For example: In my credit card it may say "Starbucks Main St.", so it looks for that information in a list and if

Replace Content of a cell based on a list of options in Google Sheets

吃可爱长大的小学妹 提交于 2020-06-17 00:52:13
问题 For years I have been using a very long formula to help me achieve what I am going to ask here. Basically, every month I download my Credit Card statement and use a bunch of formulas to sum it up in a better way to import into my accounting software. What my formulas do is that it reads the Description in each row and based on the content of that row it rewrites that description. For example: In my credit card it may say "Starbucks Main St.", so it looks for that information in a list and if

Replace Content of a cell based on a list of options in Google Sheets

﹥>﹥吖頭↗ 提交于 2020-06-17 00:51:26
问题 For years I have been using a very long formula to help me achieve what I am going to ask here. Basically, every month I download my Credit Card statement and use a bunch of formulas to sum it up in a better way to import into my accounting software. What my formulas do is that it reads the Description in each row and based on the content of that row it rewrites that description. For example: In my credit card it may say "Starbucks Main St.", so it looks for that information in a list and if

G Sheets Table of Contents Script

女生的网名这么多〃 提交于 2020-06-16 17:27:55
问题 For Google sheet workbooks that have several sheets, I create a Table of Contents sheet that lists all of the sheets in the workbook to increase ease of use for users. I have looked for an add-on, macro, or script that can speed up the process. No dice. Any ideas for how to automate the process of creating a new sheet that lists the names of all of the other sheets (One sheet name per cell) and then automatically links the cell to that sheet? 回答1: script: function SHEETLIST() { try { var

The formula deleted by Google Form entries (answers)

ε祈祈猫儿з 提交于 2020-05-30 07:54:33
问题 The Formula gets deleted once I get new answers submitted by customers! Here is the test store: https://test-stoore21.myshopify.com/products/1st-product-title , add this product to cart and enter any random data to Shipping information form and click confirm, then check this Sheet: https://docs.google.com/spreadsheets/d/1xoNPfIfrVv7jF8W3Pa67Iu9oJRz2NOncW7oLQ94mWQ4 As you can see the Formula in the CELL of F Column gets deleted once data comes in. Any script or trick to avoid deleting the

Using INDIRECT in Array Formula

人盡茶涼 提交于 2020-05-17 08:44:27
问题 I use this arrayformula along with INDIRECT because it is the only way I know to maintain my references since the reference sheet has in the script to routinely add another row to sheet Data!. How can I either add to the below formula to only show values in the array that are above the value in $CQ$17 and below the value in $CQ$16 ? Can this be done without increasing my sheets processing time since it updates every minute? =ARRAYFORMULA(INDIRECT("Data!E"&13+$F$7&":E"&597+$F$7)) 回答1: IIUC,