Last active
August 22, 2021 17:05
-
-
Save thedarsideofit/e9a2207bf40255a8e4f440f096216e29 to your computer and use it in GitHub Desktop.
Selector para Obligaciones Negociables https://www.byma.com.ar/especie/irc9o/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Poner esta fórmula en Google Sheets | |
//F13 sería la url = https://www.byma.com.ar/especie/irc9o/ | |
=INDEX(IMPORTXML(F13,"//ul[@class='species-values']//span"),1) | |
//Alternativa si necesitan formatear el texto a número reemplaza '.' por '' y ',' por '.' | |
=SUBSTITUTE(SUBSTITUTE(INDEX(IMPORTXML(F13,"//ul[@class='species-values']//span"),1),".",""),",",".") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment