Added contains blanks example

This commit is contained in:
dfinke
2016-09-12 16:09:04 -04:00
parent 6bbc5cb6e3
commit b8178ed910

View File

@@ -0,0 +1,15 @@
$ContainsBlanks = New-ConditionalText -ConditionalType ContainsBlanks
$data = $(
New-PSItem a b c (echo p1 p2 p3)
New-PSItem
New-PSItem d e f
New-PSItem
New-PSItem
New-PSItem g h i
)
$file ="c:\temp\testblanks.xlsx"
rm $file -ErrorAction Ignore
$data | Export-Excel $file -show -ConditionalText $ContainsBlanks