Hello,
The following division, $($StateTot/$NationTot), gives me 0.191304347826087. What do I need to do to get the division to format as 19%, so the Write-Host would read Write-Host "The percentage of State to National is 19%"
$StateTot = 66
$NationTot = 345
write-Host "This is how you force evaluation: $($StateTot/$NationTot)"
Thanks for your help! SdeDot