Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grdvsng/ExcelWorkBooks
If you need make some script use excel you can fast create com object with work book and application.
https://github.com/grdvsng/ExcelWorkBooks
admin excel powershell powershell-module powershell-script scripts vba vba-excel
Last synced: 9 days ago
JSON representation
If you need make some script use excel you can fast create com object with work book and application.
- Host: GitHub
- URL: https://github.com/grdvsng/ExcelWorkBooks
- Owner: grdvsng
- Created: 2019-06-12T08:00:30.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-12T14:52:16.000Z (over 5 years ago)
- Last Synced: 2024-05-22T22:35:08.623Z (7 months ago)
- Topics: admin, excel, powershell, powershell-module, powershell-script, scripts, vba, vba-excel
- Language: PowerShell
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - grdvsng/ExcelWorkBooks - If you need make some script use excel you can fast create com object with work book and application. (PowerShell)
README
# ExcelWorkBooks
> ## ExcelWorkBooks class for easy use Excel WorkBook in PowerShell.
### If you need make some script use excel you can fast create com object with work book and application.
#### example (if we need create new Book):
```PowerShell# __init__ ([path of excel file], [create file if not exist], [made application visible or not])
[ExcelWorkBooks]$WB = [ExcelWorkBooks]::new(".\Foo.csv", $true, $false);
$WB.Application.Range("A1") = "Hello PS!";
$WB.WorkBook.ActiveSheet.Cells(1,2) = 0;# Kill Com objects(Boolean[Save doc or not])
$WB.Quit($true)```