Skip to content

Instantly share code, notes, and snippets.

View will0386's full-sized avatar

Will CR will0386

  • Brazil
View GitHub Profile
@will0386
will0386 / SELIC.gs
Created March 22, 2023 22:50 — forked from danperrout/SELIC.gs
API Função SELIC Google Planilhas (Sheets)
/*
* @return Retorna a taxa anual da SELIC de acordo com a data passada (se não for passada nenhuma data retorna a taxa anual do dia de hoje).
* Fonte: https://www.bcb.gov.br/estabilidadefinanceira/selicdadosdiarios
**/
function SELIC(dataConsulta = new Date()) {
var today = Utilities.formatDate(new Date(), "GMT+3", "dd/MM/yyyy");
if (dataConsulta.length == 0)
dataConsulta = new Date()