Hello,
I don't know if what I would like to do can be done.
I use this sample to illustrate
$days= "monday","tuesday","wednesday"
$result = foreach ($a in 1..4)
{
[pscustomobject]@{
Day = $a
ScheduleDay = $days -join "`r`n"
}
}
$result | ConvertTo-Html | Out-File "c:\test.html"
c:\test.html
I would like to have the result in the next picture.

But my result is this one :



