I am trying to import some quotes from Yahoo Finance to Google Sheets via IMPORTXML that Google Finance does not offer.
For example to import the current rate from IBM or Apple I use
=IFNA(VALUE(IMPORTXML("https://finance.yahoo.com/quote/IBM","//*[@class=""D(ib) Mend(20px)""]/span[1]")))
or
=IFNA(VALUE(IMPORTXML("https://finance.yahoo.com/quote/AAPL","//*[@class=""D(ib) Mend(20px)""]/span[1]")))
This works so far. However, I fail to import the price of this company. https://finance.yahoo.com/quote/0P00016MCQ.F
I just don't know why and what to do. Can someone help me? I would be very happy about it!