skip to Main Content

Javascript and Excel DB

I made a Javascript nodejs project that stores data in Excel. I can access all columns in the entire file without any problems, but the value of the cells containing time information(12:30) is given as numbers(0.6423611111111112). Is it possible to…

VIEW QUESTION

azure function app connection to postgresql

const { app } = require('@azure/functions'); const ExcelJS = require('exceljs'); const { Pool } = require('pg'); app.storageBlob('storageBlobTrigger', { path: 'attachments/{name}', connection: 'MyStorageConnectionString', handler: async (context) => { // Obtain a reference to the blob stream const blobStream = context.bindingData.blobTrigger.openReadStream(); try…

VIEW QUESTION

Get specific json value

I am creating a quick VBA script to decipher a json response. This is a work laptop so can't install any other extensions. Via API I get a JSON responds. So far all works. But how do I only list…

VIEW QUESTION
Back To Top
Search