I googled for it and looked into many answers here, but it seems still not working for me.
I try to use this conditional formatting:
EXACT(A3,(INDIRECT("U_automatikus!A1:A")))
Here are the screenshots of my sheets.
Why it isn't doing anything?
My aim is to mark those in the first sheet which are present in the second too.
=FILTER(A1; COUNTIF(INDIRECT("U_automatikus!A$1:A"); A1))
demo spreadsheet
Related
finally decided to sign up to stackoverflow because of this. So I´d be super grateful about a solution!
I´m trying to get a number of a <span> element. Here is an image of the data box I´m trying to scrape from. It´s on this page: https://de.marketscreener.com/kurs/aktie/SNOWFLAKE-INC-112440376/analystenerwartungen/
The relevant Xpath is //*[#id="highcharts-0oywbsk-200"]/div[2]/div/span/span
I´m trying: =IMPORTXML("https://de.marketscreener.com/kurs/aktie/SNOWFLAKE-INC-112440376/analystenerwartungen/"),"//div[2]/div/span/span")
I´m ignoring the #id-element, this works pretty well with many elements on the same page, but in this case not at all. I ignore the id, because I can´t use it as it changes on every page. Is this ok?
Google Sheets always gives me a #N/A error?! Any idea how to scrape that number?
disabling JavaScript reveals what you can scrape:
I have a IMPORTDATA that has been working well. A week ago it started to show "empty output". I tried changing the formula but so far no luck.
Formula + url here
I expect the result to extract tags from the url.
I've tried IMPORTXML
You need to use the IMPORTXML function rather than IMPORTDATA. I've added a tab to your sheet.
try it like this:
=IMPORTXML(A2, "//span[#class='text-largest strong override-listing-price']")
=TRANSPOSE(IMPORTXML(A2, "//a[contains(#class,'btn btn-secondary')]"))
I can't figure out the correct XPath to use in Google Sheets for extracting the 3 (three) "Yield on Cost" values at the top of this page: https://seekingalpha.com/symbol/GE/dividends/yield-on-cost
Or the 5 (five) "Growth" values at the top of this page: https://seekingalpha.com/symbol/GE/dividends/dividend-growth
I have read many informative webpages on the subject of using both IMPORTXML and IMPORTHTML within Google Sheets, and I have had good success in the past -- but I am coming up empty on these two pages. This is likely due to me missing some fundamental problem that others would probably see and understand immediately.
How can I achieve my goal?
https://seekingalpha.com/ site can't be scraped because it depends on JavaScript and Google Sheets can't work with JavaScript at all. You can see yourself if you disable JS temporarily:
I am unable to make the below filter formula work. Notice that I am trying to refer to the sheet "Data" and filter them into another sheet. I get error saying there were no matches.
=FILTER(Data!A3:Data!J, ARRAYFORMULA(REGEXMATCH(Data!J3:Data!J, ".*km.*")))
However, the above formula works when I insert it in the "Data" sheet. Notice that "Data!" is removed as it is in same sheet.
=FILTER(A3:J, ARRAYFORMULA(REGEXMATCH(J3:J, ".*km.*")))
I tried using the below sets with same results.
=FILTER(A3:J, REGEXMATCH(J3:J, ".*km.*"))
=FILTER(Data!A3:Data!J, REGEXMATCH(Data!J3:Data!J, ".*km.*"))
I have no problems filtering dates, numbers from "Data" sheet into my filtering sheet. It is only with "text contains" condition. Any help to resolve this is appreciated.
The formula was wrong. I was using the "Data!" twice. The below code works. Phew! Switching between languages (autohotkey, html, javascript, LibreOffice basic) seems to be taking a toll.
=FILTER(Data!A3:J, REGEXMATCH(Data!J3:J, ".*km.*"))
I asked this question at jquery forum cf: my question, but was asked to come here and look for Oleg.
I've done a lot of research online and tested a bunch of code either mine or from the web, but so far have had no luck. I keep on reading that I need to use the oneditfunc function. As you see in my question at the jquery forum, I added those action buttons in gridComplete. Where do I declare and define the oneditfunc function?
The example at http://www.ok-soft-gmbh.com/jqGrid/ActionButtons.htm does look like what I am looking for, but I can't use the pre-defined 'actions' formatter, I have to use buttons which bear the texts Edit, Save and Cancel.
There is an example at http://www.trirand.com/blog/jqgrid/jqgrid.html# under Row Editing (new) > Custom Edit, which I followed to create mine you've seen in my original question at jquery forum. Unfortunately, those buttons don't toggle.
It just doesn't make sense to display the S(ave) and C(ancel) buttons when the rows are not even in edit mode. So I do want to fix this by toggling them. Any ideas to share? I am sure this is going to help a lot of people as no working examples can be found online. Thank you!
For those who are looking to solve this problem. I have solve it and I have posted my solution at http://forum.jquery.com/topic/jqgrid-inline-editing-buttons .