skip to Main Content

Extract JSON Array to same Row using Excel Power Query

I have the following JSON { "Data": { "totalExecutionTime": "00:00:00.5544916", "totalCount": "33414", "Items": [ { "featureId": 100, "featureName": "Product", "id": 5903, "parentId": 0, "brand": "Normal", "order": 0, "createdDate": "2022-08-18T19:00:57.44", "modifiedDate": "2024-07-10T13:21:29.123", "Values": [ { "featureId": 100, "featureName": "Value", "seq": 0,…

VIEW QUESTION

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
Back To Top
Search