Skip to content

Instantly share code, notes, and snippets.

View Sonam12345's full-sized avatar

Sonam Sonam12345

View GitHub Profile
@Sonam12345
Sonam12345 / ExcelToJson.ps1
Created April 15, 2023 14:44
Convert specific table of excel sheet to JSON using PowerShell
param (
# Excel name
[Parameter(Mandatory=$true)]
[string]$InputFileFullPath,
# Sheet name
[Parameter(Mandatory=$true)]
[string]$SubjectName,
# Identifier for the table
[Parameter(Mandatory=$true)]
[string]$ClassName