google-sheets-formula

to find the values

我只是一个虾纸丫 提交于 2020-07-23 06:33:33
问题 I need to find out Which supplier gives the lowest price When we have more suppliers giving the same product (Barcode). I have so many suppliers and they supply the same product. in that case i need to find out who give me the lowest price without manual lookup. Mr. @Kirkg13 gave me a solution to find out the lowest price among the latest price. Now i want to display Who gives the lowest price When we enter a barcode which is common in all suppliers. 回答1: try: =ARRAYFORMULA(IFNA(VLOOKUP(J2:J

How to use FILTER function with wildcard?

邮差的信 提交于 2020-07-22 10:58:47
问题 I'm trying to use the Google Sheets FILTER function to filter for string that contains the word 'groups'. The code I'm using is this: =filter(A2:C2262,B2:B2262="*"&"groups"&"*") Unfortunately, it doesn't work as the error message I receive is "No matches are found in FILTER evaluation." I've attached a screenshot to show the table I'm working with. How do I make this work? 回答1: try: =FILTER(A:A, SEARCH("*group*", A:A)) 来源: https://stackoverflow.com/questions/62973592/how-to-use-filter

Formula for comparing 2 columns for containing data and counting their occurence?

♀尐吖头ヾ 提交于 2020-07-22 05:56:12
问题 I faced a problem with comparing data in excel. I asked a similar question earlier (Is there any Excel Formula for comparing 2 columns for containing data and counting their occurrence?), but my problem still not solved. So please help me, someone. I will show an example of what do I want to get: As you can see by these screenshots formula returns me "1" value only if it is an exact match, but I need an approximate match. So for example, if I need "Apple" and I have "Apple Inc" formula must

Is there a way to REGEXMATCH from a range of cells from A1:A1000 for example?

人盡茶涼 提交于 2020-07-19 18:04:32
问题 Basically, I am trying to find a way to search through a list of phrases and highlight/extract or identify any phrase or cell that contains a phrase or word from a separate column/list. To put this into context, I have a list of "search terms" that have triggered my Google ads, this list contains phrases or expressions that people have entered into the google search engine. I also have a list of "negative keywords" that I have used to block ads from showing when certain words or phrases are

To find the lowest supplier who gives the lowest price

断了今生、忘了曾经 提交于 2020-07-10 10:25:23
问题 I have a sheet that gives the lowest price among two suppliers. And one member from this platform helped me to find which supplier gives the lowest price. but the problem is it displays the value only if both barcode comes in the same row. pls help me to expand this equation that where ever matching barcode comes in the sheet must give me the lowest supplier. Am sorry for my bad english. so that the sheet is shared here. Please take a look. https://docs.google.com/spreadsheets/d

How to call a Google Sheet formula from within a custom function?

拥有回忆 提交于 2020-07-10 03:19:18
问题 Is it possible to call any of the Google Sheets formulas from within your own Google Apps script custom function? If so, how? It obviously doesn't work to merely use the formula name like you would inside the sheet. Like this, which is what I was hoping would work: function myCustomFunction() { return TDIST(1,30,1); // calling =myCustomFunction() does not work due to TDIST giving a ReferenceError, even though =TDIST(1,30,1) works inside the spreadsheet } But since Google's built-in formulas

How to call a Google Sheet formula from within a custom function?

▼魔方 西西 提交于 2020-07-10 03:18:55
问题 Is it possible to call any of the Google Sheets formulas from within your own Google Apps script custom function? If so, how? It obviously doesn't work to merely use the formula name like you would inside the sheet. Like this, which is what I was hoping would work: function myCustomFunction() { return TDIST(1,30,1); // calling =myCustomFunction() does not work due to TDIST giving a ReferenceError, even though =TDIST(1,30,1) works inside the spreadsheet } But since Google's built-in formulas

Google Sheets importXML Returns Empty Value

半腔热情 提交于 2020-07-09 16:08:07
问题 Im trying to scrape this website (https://kamadan.gwtoolbox.com/) with google sheets for material costs for a game that I play. There are two tables; "Common Materials" and "Rare Materials" in a drop down in the top right corner. I am trying to pull the values for both as the prices update. I copied the full Xpath and used the function below in an empty cell on a sheet. =importxml("https://kamadan.gwtoolbox.com/","/html/body/div[2]/div[1]/div/div[2]/table/tbody") This returns a #N/A error

Is there a formula for upcoming date using formula in Google sheet based on condition?

纵饮孤独 提交于 2020-07-09 06:59:29
问题 I have a google sheet where I need to get the next upcoming date based on the start date set in column A Any pointers are greatly appreciated? I am unable exhibit the efforts as I am completely new to this sort of recurrence using Google sheets https://docs.google.com/spreadsheets/d/1g_UNg4MjDy3gFufpjZtMRkbBz80K3scQdZOaiAnZi7I/edit#gid=0 回答1: This behavior (the next date from today including today) could be implemented manually by this formula: ={ "Next date from today"; ARRAYFORMULA( IFS( A2

In ARRAY_LITERAL, an Array Literal was missing values for one or more rows - indirect formula error in google spreadsheet

大城市里の小女人 提交于 2020-07-08 21:30:51
问题 Hy Guys, i'm triyng to merge two different Tab of the same Google SpreadSheet. I'm using this formula in the first cell ={indirect(dynamicRange1);indirect(dynamicRange2)} where dynamicRange 1 and 2 are: FirstSheet!2:2606 SecondSheet!2:6598 But shomething does not work fine. "In ARRAY_LITERAL, an Array Literal was missing values for one or more rows" If i use just one dynamicRance everything works fine, both something goes wrong. 回答1: Number of columns in both sheets must be the same: Try =