mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-19 09:43:46 +00:00
Show Fibonacci series by generating formulas from PS
This commit is contained in:
19
Examples/Fibonacci/ShowFibonacci.ps1
Normal file
19
Examples/Fibonacci/ShowFibonacci.ps1
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
param ($fibonacciDigits=10)
|
||||||
|
|
||||||
|
|
||||||
|
$file = "fib.xlsx"
|
||||||
|
rm "fib.xlsx" -ErrorAction Ignore
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$(
|
||||||
|
New-PSItem 0
|
||||||
|
New-PSItem 1
|
||||||
|
|
||||||
|
(
|
||||||
|
2..$fibonacciDigits |
|
||||||
|
ForEach {
|
||||||
|
New-PSItem ('=a{0}+a{1}' -f ($_+1),$_)
|
||||||
|
}
|
||||||
|
)
|
||||||
|
) | Export-Excel $file -Show
|
||||||
Reference in New Issue
Block a user